- 浏览: 520728 次
- 性别:
- 来自: 河北
最新评论
-
zrong:
已经支持了。
杂谈:倘若flash支持JPEG XR格式? -
蓝月儿:
anr是这么解释的呀。。。一次面试的笔试题,竟然都不知道是这样 ...
什么是ANR 如何避免它? -
hymer2011:
这是纯jsp的还是基于ssh的?
jsp网上商城源码 -
敲敲大葱头:
好文章,学习了
Android-SDK SearchableDemo--浮动搜索框(SearchManager) -
overkill:
你好,我在使用InstallAnywhere的silent安装 ...
InstallAnyWhere学习笔记 ( by quqi99 )
文章列表
When an instance method declaration includes a sealed modifier, that method is said to be a sealed method. Asealed method overrides an inherited virtual method with the same signature. An override method can also bemarked with the sealed modifier. Use of this modifier prevents a derived class from fu ...
- 2006-05-08 12:32
- 浏览 629
- 评论(0)
When an instance method declaration includes an abstract modifier, that method is said to be an abstractmethod. Although an abstract method is implicitly also a virtual method, it cannot have the modifier virtual.An abstract method declaration introduces a new virtual method but does not provide an i ...
- 2006-05-08 12:32
- 浏览 587
- 评论(0)
When an instance method declaration includes an override modifier, the method is said to be an overridemethod. An override method overrides an inherited virtual method with the same signature. Whereas a virtualmethod declaration introduces a new method, an override method declaration specializes an e ...
- 2006-05-08 12:31
- 浏览 662
- 评论(0)
When a method declaration includes a static modifier, that method is said to be a static method. When nostatic modifier is present, the method is said to be an instance method.A static method does not operate on a specific instance, and it is a compile-time error to refer to this in a staticmethod.An ...
- 2006-05-08 12:30
- 浏览 614
- 评论(0)
When an instance method declaration includes a virtual modifier, that method is said to be a virtual method.When no virtual modifier is present, the method is said to be a non-virtual method.The implementation of a non-virtual method is invariant: The implementation is the same whether the method isi ...
- 2006-05-08 12:30
- 浏览 635
- 评论(0)
A method is a member that implements a computation or action that can be performed by an object or class.Methods are declared using method-declarations:method-declaration:method-header method-bodymethod-header:attributesopt method-modifiersopt return-type member-name ( formal-parameter-listopt )metho ...
- 2006-05-08 12:29
- 浏览 611
- 评论(0)
The parameters of a method, if any, are declared by the method?s formal-parameter-list.formal-parameter-list:fixed-parametersfixed-parameters , parameter-arrayparameter-arrayfixed-parameters:fixed-parameterfixed-parameters , fixed-parameterfixed-parameter:attributesopt parameter-modifieropt type iden ...
- 2006-05-08 12:29
- 浏览 291
- 评论(0)
A constant is a class member that represents a constant value: a value that can be computed at compile-time. Aconstant-declaration introduces one or more constants of a given type.constant-declaration:attributesopt constant-modifiersopt const type constant-declarators ;constant-modifiers:constant-mod ...
- 2006-05-08 12:21
- 浏览 553
- 评论(0)
A field is a member that represents a variable associated with an object or class. A field-declaration introducesone or more fields of a given type.field-declaration:attributesopt field-modifiersopt type variable-declarators ;field-modifiers:field-modifierfield-modifiers field-modifierChapter 17 Clas ...
- 2006-05-08 12:21
- 浏览 590
- 评论(0)
The members of a class consist of the members introduced by its class-member-declarations and the membersinherited from the direct base class.class-member-declarations:class-member-declarationclass-member-declarations class-member-declarationclass-member-declaration:constant-declarationfield-declarat ...
- 2006-05-08 12:20
- 浏览 603
- 评论(0)
A class is a data structure that may contain data members (constants and fields), function members (methods,properties, events, indexers, operators, instance constructors, destructors, and static constructors), and nestedtypes. Class types support inheritance, a mechanism whereby a derived class can ...
- 2006-05-08 12:19
- 浏览 684
- 评论(0)
A class-declaration is a type-declaration (§16.5) that declares a new class.class-declaration:attributesopt class-modifiersopt class identifier class-baseopt class-body ;optA class-declaration consists of an optional set of attributes (§24), followed by an optional set of class-modifiers(§17.1.1), fo ...
- 2006-05-08 12:19
- 浏览 414
- 评论(0)
A type-declaration is a class-declaration (§17.1), a struct-declaration (§18.1), an interface-declaration(§20.1), an enum-declaration (§21.1), or a delegate-declaration (§22.1).type-declaration:class-declarationstruct-declarationinterface-declarationenum-declarationdelegate-declarationA type-declarat ...
- 2006-05-05 23:10
- 浏览 645
- 评论(0)
A namespace-member-declaration is either a namespace-declaration (§16.2) or a type-declaration (§16.5).namespace-member-declarations:namespace-member-declarationnamespace-member-declarations namespace-member-declarationnamespace-member-declaration:namespace-declarationtype-declarationA compilation un ...
- 2006-05-05 23:09
- 浏览 638
- 评论(0)
Using-directives facilitate the use of namespaces and types defined in other namespaces. Using-directivesimpact the name resolution process of namespace-or-type-names (§10.8) and simple-names (§14.5.2), butunlike declarations, using-directives do not contribute new members to the underlying declarati ...
- 2006-05-05 23:08
- 浏览 640
- 评论(0)