Home About us Products Services Contact us Bookmark
:: wikimiki.org ::
Self

Self

简洁的威力。
— David Ungar
Randy Smith
Self语言,是一种基于原型的面向对象程序设计语言,于1986年施乐帕洛阿尔托研究中心的David Ungar和Randy Smith给出了最初的设计。

基本特点

Self语言把概念上的精简作为设计原则。它取消了的概念,只有对象的概念,同时把消息作为最基本的操作。把对象的属性理解为获取或更改属性这两种方法,从而把属性的概念简化为方法;取消了变量赋值,替代它们的是通过消息来读槽和写槽。 Self语言是在Smalltalk的基础上发展而来,沿用了Smalltalk中一切都是对象的风格。Self 同Smalltalk一样既是一个编程语言,也是一个编程环境执行环境。Self 也拥有一个图形用户环境Morphic,Self的编程环境也是基于Morphic来实现的。Self在精简语言概念的同时也把大量的工作转交给环境来处理。如可见性(visibility),模块与代码的管理都是由环境来处理的,语言中的反省机制(reflection)也同环境密切相关。 在发展Self的过程中,Self的设计研究人员也探索了Self的程序设计。他们提出了traits的概念,用对象实现了名字(对象名或方法名)的管理,用动态继承实现模式转换。 在实现Self系统的过程中,设计研究人员发展出了一种适应性编译(adaptive compilation)技术。这种技术的采用提高了Self代码的执行效率。

Self系统

尽管Self系统一次运行在一个进程中,但Self系统实际上可以分成两个部分:Self 虚拟机和Self世界(Self world)。Self世界是一个Self 对象库,Self 程序就是Self世界里的对象,Self虚拟机用来执行这些Self程序。Self虚拟机还提供了一些可供调用的原语,用来实现算术运算、对象复制、输入输出等。 当Self程序从终端文件或者图形用户界面输入到系统中来时,Self系统把源程序解析转化为Self对象。Self对象包括数据对象和方法对象,方法对象的代码部分是用一种指令非常简单的字节码(bytecode)表示的,字节码由虚拟机来解释。对经常执行的方法,虚拟机将进一步把字节码转化为本机代码,这样可以提高运行效率。

发展简史

Self语言的最初设计是由David Ungar和Randy Smith于1986年在施乐帕洛阿托研究中心提出的,并在1987年OOPSLA'87的论文SELF: The Power of Simplicity上给出了描述。 1987年初Craig Chambers, Elgin Lee 和 Martin Rinard在Smalltalk 上给出了Self的第一个实验性解释器。 1987年夏Self项目在Stanford大学正式开始,1988年夏给出了第一个有效率的实现,并发布了1.0和1.1两个版本。在第一个版本中包括内存管理系统编译器1991年初Self项目移至Sun Microsystems Laboratories Inc. ,并且在1992年发布了2.0版。在第二个版本中采用了新的编译技术,并引入了多重继承1993年1月Self 3.0版发布。在这个版本中包括了一个实验性的图形用户界面,简化了上个版本中多重继承的设计,引入了可见性概念,并采用了更新的编译技术。 1995年7月Self 4.0版发布。在这个版本中包括了一个全新的图形用户环境Morphic,提供了工具transporter用于保存对象,改进了虚拟机,改善了内存管理,在环境的层次上引入了模块的概念,取消了语言层次上的可见性概念。 1995年之后Self的发展基本已经停滞,但在发展Self过程中探索出的一些技术在别的系统中得到了应用。在Self的实现中采用的各种编译优化技术直接导致了Java Hotspot虚拟机的产生;在 Smalltalk的一个实现Squeak中采用了Self图形用户界面Morphic的设计方案,放弃了标准 Smalltalk中采用的MVC的方案。

站外链接


- [http://research.sun.com/self/ Self主页]

施乐帕洛阿尔托研究中心

--帕洛阿尔托研究中心(Xerox Palo Alto Research Center)是--公司所成立的最重要的研究机构,它坐落于美国加利福尼亚州帕洛阿尔托,成立于1970年。 --帕洛阿尔托研究中心是许多现代计算机技术的诞生地,他们的创造性的研发成果包括:个人电脑激光打印机鼠标以太网图形用户界面Smalltalk、页面描述语言InterpressPostScript的先驱)、--和--、所见即所得文本编辑器、语音压缩技术等。 帕洛阿尔托研究中心在2002年1月4日起獨立為公司(Palo Alto Research Center Incorporated)。

外部连接


- [http://www.parc.com/ PARC]
- [http://www.xerox.com/innovation/parc.html Xerox PARC 的创新]
- [http://www.digibarn.com/friends/curbow/star/index.html Xerox Star 历史文档] category:美国机构 ja:パロアルト研究所

对象

对象,台湾译作物件,是面向对象方法中的术语,既表示客观世界问题空间中的某个具体的事物,又表示软件系统解空间中的基本元素。 在软件系统中,对象具有唯一的标识符,对象包括属性方法,属性就是需要记忆的信息,方法就是对象能够提供的服务。在面向对象的软件中,对象是某一个实例Category:程序设计语言 ja:インスタンス

编程语言

程序设计语言,是一组用来定义计算机程序的语法规则。它是一种被标准化的交流技巧,用来向计算机发出指令。一种计算机语言让程序员能够准确地定义计算机所需要使用的数据,并精确地定义在不同情况下所应当采取的行动。 程序设计语言原本是被设计成专门使用在计算机上的,但它们也可以用来定义算法或者数据结构。正是因为如此,程序员才会试图使程序代码更容易阅读。 设计语言往往使程序员能够比使用机器语言更准确地表达他们所想表达的目的。对那些从事计算机科学的人来说,懂得程序设计语言是十分重要的,因为在当今所有的计算都需要程序设计语言才能完成。 在过去的几十年间,大量的程序设计语言被发明、被取代、被修改或组合在一起。尽管人们多次试图创造一种通用的程序设计语言,却没有一次尝试是成功的。之所以有那么多种不同的编程语言存在的原因是,编写程序的初衷其实也各不相同;新手与老手之间技术的差距非常大,而有许多语言并对新手来说太难学;还有,不同程序之间的运行成本()各不相同。 有许多用于特殊用途的语言,只在特殊情况下使用。例如,PHP专门用来显示网页Perl更适合文本处理;C语言被广泛用于操作系统编译器的开发(所谓的系统编程)。 高级程序设计语言(也称高级语言)的出现使得计算机程序设计语言不再过度地倚赖某种特定的机器或环境。这是因为高级语言在不同的平台上会被编译成不同的机器语言,而不是直接被机器执行。最早出现的编程语言之一FORTRAN的一个主要目标,就是实现平台独立。 虽然大多数的语言可以既被编译()又被解译(),但大多数只在一种情况下能够良好运行。在一些编程系统中,程序要经过几个阶段的编译,一般而言,后阶段的编译往往更接近机器语言。这种常用的使用技巧最早在1960年代末用于BCPL,编译程序先编译一个叫做“0代码”的转换程序(),然后再使用虚拟器转换到可以运行于机器上的真实代码。这种成功的技巧之后又用于Pascal和P-code,以及Smalltalk和二进制码,虽然在很多时候,中间过渡的代码往往是解译,而不是编译的。 如果所使用的翻译的机制是将所要翻译的程序代码作为一个整体翻译,并之后运行内部格式,那么这个翻译过程就被成为编译。因此,一个编译器是一个将人可阅读的程序文本(叫做源代码)作为输入的数据,然后输出可执行文件()。所输出的可执行文件可以是机器语言,由计算机的中央处理器直接运行,或者是某种模拟器的二进制代码。 如果程序代码是在运行时才即时翻译,那么这种翻译机制就被称作解译。经解译的程序运行速度往往比编译的程序慢,但往往更具灵活性,因为它们能够与执行环境互相作用。参见解译语言

特点

每一种程序设计语言可以被看作是一套包含语法词汇含义的正式规范。 这些规范通常包括:
- 数据和数据结构
- 指令及流程控制
- 引用机制和重用
- 设计哲学 大多数被广泛使用或经久不衰的语言,拥有负责标准化的组织,经常会晤来创造及发布该语言的正式定义,并讨论扩展或贯彻现有的定义。

数据和数据结构

现代计算机内部的数据都只以二元方式储存,即开-关模式()。现实世界中代表信息的各种数据,例如名字、银行账号、度量以及同样低端的二元数据,都经由程序设计语言整理,成为高端的概念。 一个程序中专门处理数据的那个系统被称为程序语言的型态系统();对型态系统的研究和设计被称为型态理论()。语言可以被分为静态型态系统(),例如C++Java,和动态型态系统(),例如Lisp,JavaScript,Tcl和Prolog。前者可被进一步分为包含宣告型态()的语言,即每一个变量和函数的型态都清楚地宣告,或type-inferred语言(例如MUMPS,ML)。 大多数语言还能够在内置的型态基础上组合出复杂的数据结构型态(使用数组,列表,堆栈,文件等等)。面向对象语言(,又译作“物件导向语言”)允许程序员定义新的数据型态,即“对象”或“物件”(),以及运行于该对象的函数()和方法()。 除了何时以及如何确定表达式和型态的联系,另外一个重要的问题就是语言到底定义了哪些型态,以及允许哪些型态作为表达式的值。诸如C编程语言之类的低端语言允许程序命名内存位置、内存区域以及编译时的常量;ANSI C甚至允许表达式返回结构值()。功能性的语言一般允许变量直接使用运行时计算出的值,而不是指出该值可能储存的内存地址。

指令及流程控制

一旦数据被确定,机器必须被告知如何对这些数据进行处理。较简单的指令可以使用关键字或定义好的语法结构来完成。不同的语言利用序列系统来取得或组合这些语句。除此之外,一个语言中的其他指令也可以用来控制处理的过程(例如分支、循环等)。

引用机制和重用

引用的中心思想是必须有一种间接设计储存空间的方法。最常见的方法是通过命名变量。根据不同的语言,进一步的引用可以包括指向其他储存空间的指针。还有一种类似的方法就是命名一组指令。大多数程序设计语言使用宏调用、过程调用或函数调用。使用这些代替的名字能让程序更灵活,并更具重用性。

程序设计语言的历史

二十世纪四十年代当计算机刚刚问世的时候,程序员必须手动控制计算机。当时的计算机十分昂贵,唯一想到利用程序设计语言来解决问题的人是德国工程师楚泽()。 几十年后,计算机的价格大幅度下跌,而计算机程序也越来越复杂。也就是说,开发时间已经远比运行时间来得宝贵。 于是,新的集成、可视的开发环境越来越流行。它们减少了所付出的时间、金钱(以及脑细胞)。只要轻敲几个键,一整段代码就可以使用了。这也得益于可以重用的程序代码库。

常见的程序设计语言


- APLA+J
- Ada
- 汇编语言
- AWK
- BasicFortran
- VBScript
- Brainfuck
- CC++
- C#
- Clipper
- COBOL
- dBase
- PASCALDelphi
- Forth
- FoxPro
- F#
- Fava
- IDL
- Java
- JavaScript
- J#
- LISP
- LOGO
- Modula
- Perl
- PHP
- PL/I
- Prolog
- Python
- Ruby
- Scheme
- Smalltalk
- SQL
- Tcl/Tk
- Visual Basic
- Visual FoxPro
- XML

参见


- 计算机科学课程列表
- 程序设计语言列表
- 编译器
- Hello World程序
- 脚本语言
- 維基程序員 category:人工語言 ja:プログラミング言語

进程

进程,台灣習稱為行程。行程之於程式的關係是多對一的。行程動態載入記憶體,共享程式碼區段但各自擁有不同資料、計數器與暫存器位址;程式則通常只有一份,以檔案的形式存在。比行程更加輕量化的是執行緒,又稱為輕量級行程。執行緒彼此之間幾乎僅有資料區段各不相同。 进程在其一个生存周期内可以处于多个状态。简单的,只有运行状态和就绪2个状态。复杂的可以有创建、运行、停止、挂起、就绪、阻塞、就绪(交换出)、阻塞(交换出)、被抢占、核心态等状态。 作業系統實施行程管理時主要有五種活動:
- 產生
- 運行
- 等待
- 就緒
- 中止 进程间通讯 Category:操作系统 ja:プロセス

程序

计算机程序或者软件程序(通常简称程序)是指一组指示计算机每一步动作的指令,通常用某种程序设计语言编写,运行于某种目标体系结构上。打个比方,一个程序就像一个用汉语(程序设计语言)写下的红烧肉菜谱(程序),用于指导懂汉语的人(体系结构)来做这个菜。 通常,计算机程序要经过编译链接而成为一种人们不易理解而计算机理解的格式,然后运行。未经编译就可运行的程序通常称之为脚本程序。

程序的运行

为了一个程序运行,计算机加载程序代码,可能还要加载数据,从而初始化成一个开始状态,然后调用某种启动机制。在最低层上,这些是由一个引导序列开始的。 在大多数计算机中,操作系统例如Windows等,加载并且执行很多程序。在这种情况下,一个计算机程序是指一个单独的可执行的映射,而不是当前在这个计算机上运行的全部程序。

冯诺依曼体系结构

在一台基于最常见的冯诺依曼体系结构(又称Harvard Architecture)的计算机上,程序从某种外部设备,通常是硬盘,被加载到计算机里。 如果计算机选择冯诺依曼体系结构,那么程序就被加载入内存。 指令序列顺序执行,直到一条跳转或转移指令被执行,或者一个中断出现。所有这些指令都会改变指令寄存器的内容。 基于这种体系计算机如果没有程序的支持将无法工作。一个计算机程序是一系列指令的集合。 程序里的指令都是基于机器语言;程序通常首先用一种计算机程序设计语言编写,然后用编译程序或者解释执行程序翻译成机器语言。 有时,程序也可以用汇编语言编写,汇编语言实质就是表示机器语言的一组记号-在这种情况下,用于翻译的程序叫做汇编程序(Assembler)。

程序和数据

程序已经被定义了。如何定义数据呢?数据可以被定义为被程序处理的信息。当我们考虑到整个计算机系统时,有时程序和数据的区别就不是那么明显了。中央处理器有时有一组微指令控制硬件,数据可以是一个有待执行的程序(参见脚本编程语言),程序可以编写成去编写其它的程序;所有这些例子都使程序和数据的比较成为一种视角的选择。有人甚至断言程序和数据没有区别。 编写一个程序去生成另外一个程序的过程被称之为原编程()。它可以被应用于让程序根据给定数据生成代码。单一一个程序可能不足以表示给定数据的所有方面。让一个程序去分析这个数据并生成新的程序去处理数据所有的方面可能会容易一些。就是一例支持这种编程模式的程序语言。 在神经网络里储存的权重是一种数据。正是这些权重数据,跟网路的拓扑结构一起,定义了网络的行为。人们通常很难界定这些数据到底表示什么或者它们是否可以由程序来代替。这个例子以及跟人工智能相关的其它一些问题进一步考验程序和数据的区别。

算法

算法指解决某个问题的严格方法,通常还需辅以某种程度上的运行性能分析。算法可以是纯理论的,也可以由一个计算机程序实现。理论算法通常根据复杂性分为不同类别;实现的算法通常经过颇析()以测试其性能。请注意虽然一个算法在理论上有效可行,但是一个糟糕的实现仍会浪费宝贵的计算机资源。(更详细信息,参见算法信息论,)

开发

编写程序是以下步骤的一个往复过程:编写新的源代码,测试、分析和提高新编写的代码以找出语法语义错误。从事这种工作的人叫做程序设计员。由于计算机的飞速发展,编程的要求和种类也日趋多样,由此产生了不同种类的程序设计员,每一种都有更细致的分工和任务。软件工程师系统分析员就是两个例子。现在,编程的长时间过程被称之为“软件开发”或者软件工程。后者也由于这一学科的日益成熟而逐渐流行。 因此,如今程序设计员可以指某一领域的编程专家,也可以泛指软件公司里编写一个复杂软件系统里某一块的一般程序员。一组为某一软件公司工作的程序员有时会被指定一个程序组长或者项目经理,用以监督项目进度和完成日期。大型软件通常经历由系统设计师的掌握的一个长时间的设计阶段,然后才交付给开发人员。牛仔式的编程(未经详细设计)是不为人所齿的。 两种当今常见的程序开发方式之一是项目组开发方式。使用这种方式项目组里每一个成员都能对项目的进行发表意见,而由其中的某一个人协调不同意见。这样的项目组通常有10个左右的成员,这样做是为了便于管理。第二种开发方式是结对开发

参见


- 程序员
- 卸载程序
- 源代码
- 電子計算機
- 计算机软件
- 程序设计语言
- 編程典範
- 固件
- 操作系统
- 图灵机
- 系统需求

外部链接


- [http://www.webopedia.com/TERM/P/program.html Definition of Computer program @ Webopedia]

参考文献

#Eric Baum What is Thought MIT Press 2004 ISBN 0-262-02548-5 #- Chapter Two: The Mind is a Computer Program Category:计算机软件 Category:程序设计 ja:プログラム ko:프로그램 simple:Computer program

图形用户界面

图形用户界面 (GUI),为用户提供界面友好的所见所得的桌面操作环境。 GUI = graphical user interfaces,图形用户接口(软件)

图形界面的变迁


- 1980年 Three Rivers公司推出Perq图形工作站
- 1981年 施乐公司推出了Alto的继承者Star,Alto曾首次使用了窗口设计
- 1984年 苹果公司推出Macintosh
- 1986年 首款用于Unix的窗口系统X Window System发布
- 1988年 IBM发布OS/2 1.10标准版演示管理器(Presentation Manager),这是第一种支持Intel计算机的稳定的图形界面
- 1992年 微软发布Windows 3.1,增加了多媒体支持
- 1995年 微软的Windows 95发布,其视窗操作系统的外观基本定型
- 1996年 微软发布Bob,此软件具有动画助手和有趣的图片。
- 1996年 IBM发布OS/2 Warp 4,它的交互界面得到显著改善,至今仍有不少ATM机运行这样的系统
- 1997年 KDEGNOME两大开源桌面项目启动
- 1997年 苹果公司发布MAC OS 8,这个系统具有三维外观并提供了SpringLoaded Folder功能
- 2000年 苹果公司漂亮的Aqua,也就是Mac OS X系统的默认外观,可以让用户更轻松地使用计算机
- 2001年 微软发布Windows XP,实现桌面功能的整合
- 2003年 Mac OS X10.3提供了一键单击访问任何已打开窗口的功能
- 2003年 Sun的Java桌面系统为GNOME桌面添加了和Mac类似的效果

参看


- 人机界面
- 人机交互
- 命令行界面
- Linux图形界面
- Windows图形界面 Category:人機工程學 Category:图形用户界面 ja:グラフィカルユーザインターフェース ko:GUI

源程序

源代码(也称源程序),是指一系列人类可读的计算机语言指令。 在现代程序语言中,源代码可以是以书籍或者磁带的形式出现,但最为常用的格式是文本文件,这种典型格式的目的是为了编译出计算机程序。计算机源代码的最终目的是将人类可读的文本翻译成为计算机可以执行的二进制指令,这种过程叫做编译,通过编译器完成。

作用

源代码主要功用有如下2种作用: #生成目标代码,即计算机可以识别的代码。 #对软件进行说明,即对软件的编写进行说明。为数不少的初学者,甚至少数有经验的程序员都忽视软件说明的编写,因为这部分虽然不会在生成的程序中直接显示,也不参与编译。但是说明对软件的学习分享维护软件复用都有巨大的好处。因此,书写软件说明在业界被认为是能创造优秀程序的良好习惯,一些公司也硬性规定必须书写。 需要指出的是,源代码的修改不能改变已经生成的目标代码。如果需要目标代码做出相应的修改,必须重新编译。

代码组合

源代码作为软件的特殊部分,可能被包含在一个或多个文件中。一个程序不必用同一种格式的源代码书写。例如,一个程序如果有C语言库的支持,那么就可以用C语言;而另一部分为了达到比较高的运行效率,则可以用汇编语言编写。 较为复杂的软件,一般需要数十种甚至上百种的源代码的参与。为了降低种复杂度,必须引入一种可以描述各个源代码之间联系,并且如何正确编译的系统。在这样的背景下,修订控制系统(RCS)诞生了,并成为研发者对代码修订的必备工具之一。 还有另外一种组合:源代码的编写和编译分别在不同的平台上实现,专业术语叫做软件移植

版权

如果按照源代码类型区分软件,通常被分为两类:自由软件和非自由软件。自由软件一般是不仅可以免费得到,而且公开源代码;相对应地,非自由软件则是不公开源代码。所有一切通过非正常手段获得非自由软件源代码的行为都将被视为非法。

质量

对于计算机而言,并不存在真正意义上的“好”的源代码;然而作为一个人,好的书写习惯将决定源代码的好坏。源代码是否具有可读性,成为好坏的重要标准。软件文档则是表明可读性的关键。

效率

虽然我们可以通过不同的语言来实现计算机的同一功能,但在执行效率上则存在不同。普遍规律是:越高级的语言,其执行效率越低。这也是为什么汇编语言生成的文件比用VB语言生成文件普遍要小的原因。 Category:程序设计 ja:ソースコード ms:Kod sumber

1986年

----

大事记


- 1月1日 - 阿魯巴島脫離荷屬安地列斯,正式升格成為荷蘭王國下屬的自治國。
- 5月3日 - 王錫爵事件台灣中華航空公司貨機突然往中國廣州降落。
- 5月4日 - 中华人民共和国开始在全国范围正式实行夏时制,至9月14日结束。
- 5月26日 - 中国环渤海经济区成立。
- 5月26日 - 欧盟旗帜欧盟所采纳。
- 6月22日 - 在墨西哥世界杯赛阿根廷英格兰的比赛中,马拉多纳先后攻入了两粒入球:上帝之手世纪进球
- 6月30日-7月1日中华人民共和国葡萄牙在北京举行了关于澳门问题的第一轮谈判。
- 8月4日 - 國家標準中文交換碼推出。
- 9月28日 - 戒嚴令之下,台灣第一個成功創立的反對黨民主進步黨創黨。
- 10月31日 - 台北市立動物園遷至木柵
- 11月25日 - 中国长江科考漂流队征服长江
- 11月25日 - 法赫德国王大桥建成通车。

出生


- 1月28日——林莉中国体操运动员
- 3月25日——何洁中国歌手
- 4月1日——宮本駿一,日本歌手
- 4月30日——张楠中国体操运动员
- 8月25日——刘亦菲中国演员
- 8月23日——陳曉琪, 香港業餘歌手

逝世


- 逝世公告
- 5月3日——王力中国著名语言学家。(1900年出生)

诺贝尔奖


- 物理:
- 化学
- 生理和医学
- 文学
- 和平
- 经济

奥斯卡金像奖

(第59届,1987年颁发)
- 奥斯卡最佳影片奖——《野战排》(Platoon)
- 奥斯卡最佳导演奖——奥利弗·斯通(Oliver Stone) 《野战排》
- 奥斯卡最佳男主角奖——保罗·纽曼(Paul Newman) 《金钱本色
- 奥斯卡最佳女主角奖——马莉·马特林(Marlee Matlin) 《悲怜上帝的女儿
- 奥斯卡最佳男配角奖——迈克尔·凯恩(Michael Caine) 《汉娜姐妹
- 奥斯卡最佳女配角奖——黛安·威斯特(Dianne Wiest) 《汉娜姐妹》 (其他奖项参见奥斯卡金像奖获奖名单Category:1986年 als:1986 ja:1986年 ko:1986년 nb:1986 simple:1986 th:พ.ศ. 2529

Abstinence until marriage

Sexual abstinence is the practice of voluntarily refraining from some or all aspects of sexual activity. Common reasons to deliberately abstain from the physical expression of sexual desire include religious or philosophical reasons (eg chastity), material reasons (to prevent conception or STD transmission), lack of suitable partners, or to conform to legal injunctions. Sexual abstinence has been debated since antiquity, and has been discussed both within the heterosexual and the homosexual spheres. See Platonic love

Premarital chastity

Main article: Chastity Many religious and ethical systems proscribe sexual activities between a person and anyone other than a spouse of that person, including most denominational variations of Judaism, Christianity, and Islam, and, historically, many legal systems and societal norms. In such contexts, sexual abstinence is (was) prescribed for unmarried persons for the purpose of chastity. Chastity is sometimes used synonymously with sexual abstinence, but the mechanisms of chastity are typically largely different for persons who assume different societal roles. For example, in most cultural, ethical, and religious contexts, coitus within monogamous marriage is not considered to be opposed to chastity.

Western attitudes

Historically, there has been a swing from the sexually free end of the Industrial Revolution to the chaste values of the early Victorian period. This was then followed by a new puritanism from the late Victorian era to the early 1900s. This important transformation often colours discussion of sexual behaviour in the later 20th century period. The First World War began a return to sexual freedom and indulgence, but more often than not the appearance of conforming to the earlier moral values of abstinence before marriage was retained. With the conclusion of the Second World War, the societal importance of abstinence declined swiftly. The advent of the oral contraceptive pill and widely available antibiotics surpressed many earthly consequences of wide and free sexual behaviour, while social mores were also changing. By the 1970s, abandonment of premarital chastity was no longer taboo in the majority of western societies; perhaps even the reverse: that members of both sexes would have experienced a number of sexual partners before marriage. Some cultural groups continued to place a value on the moral purity of an abstainer, but abstinence was caught up in a wider re-evaluation of moral values. Anthropologists and social historians have noted that many cultures such as Victorian Britain or the rural areas in the modern United States, which formally place a high value on abstinence until marriage, actually have a large amount of pre-marital sexual activity in which there is no actual sexual intercourse and which preserve a state known as technical virginity. In some cultures, those who infringe the rules regarding chastity may be ostracized. Social reacceptance can sometimes be regained by marriage between the two. In the West, even as late as the mid-20th century, there was a stigma attached to being a 'one-parent family' and an illegitimate child could be legitimized by the marriage of the parents. (This latter is still the case in many Western countries, though the lifting of legal penalties and social stigma regarding illegitimacy has rendered this irrelevant to social acceptance.)

Abstinence

Lifelong (or at least long-term) abstinence, often associated with religious ascetism, is distinguished from chastity before marriage. Abstinence is often viewed as an admirable act of self-control over the natural desire to have sex. The display of the strength of character allows the abstainer to set an example for those not able to contain their "base urges." At other times abstinence has been seen as a great social ill practiced by those who refuse to engage with the material and physical world. Some groups that propose sexual abstinence consider it an essential means to reach a particular intellectual or spiritual condition, or that chastity allows one to achieve a required self-control or a self-consciousness. In many religions chastity is imposed to the respective sacerdotal orders. In some religions, including some branches of Christianity such as Roman Catholicism, celibacy is required for priests and/or monks. Critics of abstinence on moral or religious grounds generally say that restrictions on sexual activity are emotionally or spiritually harmful. Some psychological theories hold that sexual oppression leads to various behavioral problems. Additionally, as sexual skills are learned over time, there may be long term consequences to a practice that deprives people of experience they may need in order to form an understanding of their own feelings and their compatibility with others. While there have been cultures which achieved total sexual abstinence, such as castration cults, it is unlikely that any of them survived for a substantial period of time due to their lack of reproduction. Regardless, the arrival of technology like in vitro fertilisation allows reproduction without sexual intercourse.

Abstinence as a lifestyle

Although many individuals abstain from sex for complex reasons such as religion or morality, for some individuals sexual abstinence is simply a lifestyle choice. Those individuals who fall into this category may have a dislike of sex, or are simply not interested in it. They may view sex as an unnecessary part of human life. As with other lifestyle choices, this attitude toward sex and relationships can vary greatly. Some who choose such a lifestyle still accept sex for reproduction, some engage in romantic relationships, and some engage in masturbation.

Medical aspects of abstinence

Throughout history, and especially prior to the 20th century, there have been those who have held that sexual abstinence confers numerous health benefits. For males, lack of abstinence was thought to cause a reduction of vitality. In modern times the argument has been phrased in biological terms, claiming that loss of semen through ejaculation results in a depletion of vital nutrients such as lecithin and phosphorous which are also found at high levels in the brain. Conservation of the semen allegedly allows it to be resorbed back into the bloodstream and aid in the healthy development of the body. Before the "sexual revolution" of the 1960s, it was commonly believed by members of the medical profession that numerous mental and physical diseases in men were caused primarily by loss of nutrients through seminal discharge, and that the deliberate conservation of this substance would lead to increased health, vitality and intellectual prowess. This also applied to auto-erotic practices which were also thought to lead to bedwetting and hairy palms. Dr. R. W. Bernard in his essay entitled "[http://www.ktk.ru/~cm/contin.htm Science discovers the physiological value of continence]" states: :"[I]t is clear that there is an important internal physiological relation between the secretions of the sex glands and the central nervous system, that the loss of these secretions, voluntarily or involuntarily, exercises a detrimental effect on the nutrition and vitality of the nerves and brain, while, on the other hand, the conservation of these secretions has a vitalizing effect on the nervous system, a regenerating effect on the endocrine glands and a rejuvenating effect on the organism as a whole." This is no longer considered scientifically valid. Ill effects have not found to be associated with frequent ejaculation, and one study suggests that frequent ejaculation may lead to a lower risk of prostate cancer. Indeed, there have been numerous studies indicating that excessive repression of the sexual instinct leads to an increase in the overall level of aggression in a given society. For example, psychologist J.M. Prescott, in a cross-cultural investigation published in The Bulletin of Atomic Scientists (1975) found that societies forbidding premarital sex are plagued by acts of rage and tend to have higher rates of crime and violence. Prescott also found a link between sexual repression and aggression, insensitivity, criminal behavior, and a greater likelihood of killing and torturing enemies. Proponents of abstinence often reply to this claim by stating that there is a difference between repression and transformation of the sex urge. They agree that repression, especially when involuntary, is not effective and may indeed lead to numerous psychological problems. They say that the sex energy should not be repressed but slowly transformed and purified. This must be a voluntary process and in order for it to be truly effective, must include abstinence from sexual thoughts as well as actions. Otherwise, the organism faces the stress of being excited by desire and at the same time prevented from fulfilling that desire. This is what may lead to an increase in aggression.

Religious views

Chastity is a virtue expected of the faithful of many religions, including Christians and Muslims. This usually includes abstinence from sex for the unmarried, and faithfulness to a marriage partner. In many religions some groups of people are expected to practice celibacy — to abstain from sex completely, and remain unmarried. These groups include most monks and nuns in Christianity, and priests in the Roman Catholic church. From the Roman Catholic perspective everyone is called to chastity be they married, single, or in a religious order. Chastity is a function of one's respect for the dignity of another especially in a sexual context. Sex with one's spouse is not against chastity so long as both remain open to the gift of children — contraceptives violate true chastity. In Christianity, sexual intercourse is described as "becoming one flesh" (Ephesians 5:31, Genesis 2:23-24) and is meant to take place within the context of marriage; abstinence is therefore expected of unmarried people. But for married couples, the apostle Paul wrote that they should not deprive each other except for a time for devotion to prayer. However, it should be borne in mind that historically (until the 17th century) the Christian ideal was not marriage, but celibacy. In fact, many Christian anarchists (such as Leo Tolstoy) were and are pro-celibacy. Judaism forbids intercourse outside marriage (which is termed zenuth or promiscuity), but has no ideal of abstinence for particular clerical groups. In fact, it is practically expected of men in religious functions (e.g. rabbis) to be married. Abstinence is practiced while a woman is menstruating (in Islam also) and the week after cessation of flow (the law of niddah), as well as a set period after childbirth. The Hindu tradition of [http://en.wikipedia.org/wiki/Brahmacharya Brahmacharya] places great emphasis on abstinence as a way of harnessing the energy of body and mind towards the goal of spiritual realisation. In males, the semen (Veerja) is considered sacred and its preservation (except when used for procreation) and conversion into higher life energy (Ojas) is considered essential for the development of enhanced intellectual and spiritual capacities. In the Vedanta tradition of Hinduism, the Brahman (Infinite Being) is regarded as the true Self of all and the ego-personality is a lesser self. The belief that one is the ego rather than the Self is regarded as the root of ignorance which leads to the problems in the world and in one's own life. All desires which centre around the satisfaction of the ego are considered to have their basis in ignorance, because the true Self is all-pervading and therefore without desire for anything outside itself. Most spiritual traditions share the view that humans are essentially spiritual beings and that excessive indulgence in physical sense pleasure takes one away from spiritual self-knowledge. In Buddhism, attachment to impermanent things is regarded as one of the major causes of suffering. Sex is arguably the strongest attachment to impermanent things which human beings have. Therefore in Buddhism celibacy has been regarded as essential to obtaining Nirvana (liberation from suffering).

Modern abstinence movements

Abstinence advocates recommend it as a way to avoid pregnancy and venereal disease. Without sexual contact, it is virtually impossible to conceive a child other than through artificial insemination. By avoiding exposure of the sexual organs to other people, one will also avoid the sexual transmission of many diseases (STDs). Note, however, that many STDs, including AIDS, can also be transmitted non-sexually. Some STDs (including genital warts due to human papillomavirus) are passed through skin-to-skin contact and are not prevented by using a condom. Advocates also claim other benefits, such as the freedom from teenage pregnancy and resulting ability to focus on education and preparing for their future. Pregnancy can also be avoided through selective sexual abstinence. This method is generally known as natural family planning. In order to be effective, the partners must abstain from coitus for a time sufficient to ensure that no spermatazoa are able to fertilize an ovum. Various methods are used to determine the fertility of the woman. In older times, abstinence was observed for a time based on calendar days within a woman's menstrual cycle; this method is termed the rhythm method, and has a high rate of resulting pregnancies due to irregularities present in each woman's cycles. Modern methods of natural family planning have much lower rates of unplanned pregnancy, resulting from various mechanisms which are now used to pinpoint the day of ovulation in each cycle. Many critics of abstinence promotion programs claim that these programs are not an effective way to decrease the occurrence of diseases and unwanted pregnancies. While some teens may have weak sexual desire or few sexual opportunities and thus be able to maintain it successfully, others will have stronger desires, more opportunities or act under the influence of drugs, and will in these situations not be prepared to take precautions (using condoms or other contraceptives). Worse, they may consider the independent acquisition of information about precautionary measures shameful and avoid it altogether. Organizations such as SIECUS have called abstinence-only programs "fear-based", "designed to control young people’s sexual behavior by instilling fear, shame, and guilt." [http://www.siecus.org/pubs/tsha_scaredchaste.pdf] Author Judith Levine has argued that there might be a natural tendency of abstinence educators to escalate their messages: "Like advertising, which must continually jack up its seduction just to stay visible as other advertising proliferates, abstinence education had to make sex scarier and scarier and, at the same time, chastity sweeter." (Harmful to Minors, p.108) Humor sites such as [http://www.abstinenceonly.com/ abstinenceonly.com] have been published to satirize the possibilities through abstinence. In spite of these criticisms, abstinence has become the de facto focus of sex education in the United States, so that opponents frequently adopt the line that abstinence education is acceptable only if it is combined with other methods, such as instruction in the use of condoms and easy availability thereof. Most nations of Western Europe use more comprehensive measures, and in sharp contrast to the heated discussion in the US, abstinence is hardly discussed as an educational measure.

Popularity and effectiveness

The advent of AIDS helped restore the momentum of the favourable view of abstinence. But currently there are issues as to what abstinence means: is it an abstinence from sexual intercourse or from sexual behaviour? Movements such as True Love Waits in America which asks teenagers to refrain from sex before marriage are heavily subscribed but surveys of sexual behaviour indicate an increase in the popularity of oral sex. Oral sex is not perceived as being "real sex." Teenage girls are able to indulge in sexual practices while claiming the traditional virtues of the virgin in cultures that admire it. The effectiveness of abstinence programs and movements remains debated. The study "Promising the Future: Virginity Pledges and First Intercourse" by Peter Bearman and Hanna Brückner examined the relationship between virginity pledges and first sexual intercourse. From the abstract [1]: : Since 1993, in response to a movement sponsored by the Southern Baptist Convention, over 2.5 million adolescents have taken public virginity pledges, in which they promise to abstain from sex until marriage. This paper explores the effect of those pledges on the transition to first intercourse. Adolescents who pledge are much less likely to have intercourse than adolescents who do not pledge. The delay effect is substantial. On the other hand, the pledge does not work for adolescents at all ages. Second, pledging delays intercourse only in contexts where there are some, but not too many, pledgers. The pledge works because it is embedded in an identity movement. Consequently, the pledge identity is meaningful only in contexts where it is at least partially nonnormative. Consequences of pledging are explored for those who break their promise. Promise breakers are less likely than others to use contraception at first intercourse. The effects observed in this study (and a followup [http://www.columbiaspectator.com/vnews/display.v/ART/2005/03/29/424928352fe31] study) could be explained as mere correlations: Adolescents who feel the desire to take part in the virginity movement are more likely to remain abstinent for a variety of reasons, and less likely to have knowledge about contraception. Critics of abstinence-only education point to studies that show that teens who take virginity pledges are just as likely to have sex, but are more likely to do it without protection. Some studies have found that school-based abstinence programs actually increase the incidence of pregnancies (see sex education).

See also


- asexuality
- chastity belt
- chastity ring
-
Harmful to Minors, a book by Judith Levine which deals with sexual morality in the United States and also discusses the issue of abstinence education
- Lent challenge
- Masturbation
- Platonic love
- promiscuity
- Religious aspects of marriage
- Refusal skills
- Spiritual marriage
- Straight edge
- teenage pregnancy

Reference

# Peter S. Bearman and Hannah Brückner: Promising the Future: Virginity Pledges and First Intercourse.
American Journal of Sociology, Volume 106, Number 4 (January 2001), pp. 859-912.

External links


- [http://pureloveclub.com Pure Love Club] a popular advocacy group that encourages not only appropriate sexual abstinence, but true chastity in a full expression of love
- [http://reallove.net Real Love] syndicated columnist and internationally recognized abstinence advocate also providing free articles
- [http://www.leliathomas.com/2005/07/08/sex-aids-and-the-pursuit-of-happiness/ Sex, AIDS, and the Pursuit of Happiness]
- [http://www.newadvent.org/cathen/03637d.htm Chastity] in Catholic Encyclopedia — a Christian view on chastity
- James W. Prescott, "
Body pleasure and the origins of violence", The Bulletin of The Atomic Scientists, November 1975, pp. 10-20 [http://www.violence.de/prescott/bulletin/article.html online copy]. Claims that somatosensory (including sexual) deprivation as minors causes violent behaviour of grown-ups.
- [http://www.nonewmoney.org/ No New Money for Abstinence-Only-Until-Marriage Programs] advocacy website
- [http://www.silverringthing.com/ Silver Ring Thing] A well-known successful abstinence pledge program
- [http://worldcommunity.com/tl The True Love Thing to Do] An abstinence curriculum ( a 2 1/2 hour abstinence seminar ) for teenagers that can be taught at home or in groups, using a "Reading and Discussion" workbook.
- [http://www.waitteam.org WAIT "Washington AIDS International Team"]

Effectiveness of abstinence


- [http://www.abcog.org/abstain.htm CDC head previously endorsed abstinence only education] "The study's findings are statistically significant..."
- [http://www.columbiaspectator.com/vnews/display.v/ART/2005/03/29/424928352fe31 Jill Colvin, Columbia Spectator March 29, 2005, "Abstinence Study Finds Pledges Fail To Protect"]
- [http://www.sfgate.com/cgi-bin/article.cgi?file=/c/a/2005/02/24/MNG2PBG3VF1.DTL Sabin Russell, San Francisco Chronicle, 24 February 2005, "Uganda's HIV rate drops, but not from abstinence: Study concludes basis of Bush policy apparently irrelevant"]
- [http://www.family.org/welcome/press/a0024656.cfm United States poll shows parents favoring abstinence-based education] (Focus on the Family press release)
- [http://abclocal.go.com/ktrk/news/state/013105_APstate_abstinence.html Study finds abstinence programs haven't influenced TX teens]
- [http://www.abstinence.net/library/index.php?entryid=1814 Texas A&M study shows abstinence works: Students more likely to abstain] Category:Asceticism

Lektury wadysawowo pokoje wagi elektroniczne Rolety cheap tickets










































:: RELATED NEWS ::
Jan Hesterman
Jan Hesterman (18 maart 1893, Amsterdam16 december 1963, Amsterdam) is een voormalig amateurbokser uit Nederland, die in 1920 namens zijn vaderland deelnam aan de Olympische S

Wim Hesterman
Willem (Wim) Hesterman (26 november 1897, Amsterdam2 december 1971, Amstelveen) is een voormalig amateurbokser uit Nederland, die in 1920 namens zijn vaderland deelnam aan de 17 september 1902, Amsterdam17 juli 1982, Amstelveen) is een voormalig schoonspringster uit Nederland, die in 1928 namens haar vaderland deelnam aan
Sorood-e Jomhoori-ye Eslami
"Sorood-e Melli-e Jomhoori-e Eslami" of "Sorud-e Melli-e Iran" is het volkslied van Iran sinds 1990. Het lied is gecomponeerd door Hassan Riahi met een tekst die collectief is samengesteld. In 1990 verving dit volkslied het volkslied dat tijdens de regering van Ayatollah Khomeini werd gebruikt. De naam van het volkslied betekent: Hymne van de islamitische republiek.

Nederlandse vertaling via het Engels

:Omhoog aan de horizon rijst de oostelijke zon, :Het licht in de
Alarik I
Alarik I was een Visigotische leider die in 390 tot 410 tegen de Romeinen in Thracië vocht. Hij sloot een vredesverdrag met Theodosius I. Na diens dood ging hij met zijn legers naar Macedonia en Griekenland. In