- 浏览: 522580 次
- 性别:
- 来自: 河北
最新评论
-
zrong:
已经支持了。
杂谈:倘若flash支持JPEG XR格式? -
蓝月儿:
anr是这么解释的呀。。。一次面试的笔试题,竟然都不知道是这样 ...
什么是ANR 如何避免它? -
hymer2011:
这是纯jsp的还是基于ssh的?
jsp网上商城源码 -
敲敲大葱头:
好文章,学习了
Android-SDK SearchableDemo--浮动搜索框(SearchManager) -
overkill:
你好,我在使用InstallAnywhere的silent安装 ...
InstallAnyWhere学习笔记 ( by quqi99 )
文章列表
An indexer is a member that enables an object to be indexed in the same way as an array. Indexers are declaredusing indexer-declarations:indexer-declaration:attributesopt indexer-modifiersopt indexer-declarator { accessor-declarations }indexer-modifiers:indexer-modifierindexer-modifiers indexer-modif ...
- 2006-05-14 14:29
- 浏览 680
- 评论(0)
A virtual event declaration specifies that the accessors of that event are virtual. The virtual modifier appliesto both accessors of an event.An abstract event declaration specifies that the accessors of the event are virtual, but does not provide anactual implementation of the accessors. Instead, no ...
- 2006-05-14 14:28
- 浏览 431
- 评论(0)
[Note: Event declarations typically omit event-accessor-declarations, as in the Button example above. Onesituation for doing so involves the case in which the storage cost of one field per event is not acceptable. In suchcases, a class can include event-accessor-declarations and use a private mechani ...
- 2006-05-14 14:27
- 浏览 804
- 评论(0)
When an event declaration includes a static modifier, the event is said to be a static event. When no staticmodifier is present, the event is said to be an instance event.A static event is not associated with a specific instance, and it is a compile-time error to refer to this in theaccessors of a st ...
- 2006-05-14 14:27
- 浏览 387
- 评论(0)
A virtual property declaration specifies that the accessors of the property are virtual. The virtual modifierapplies to both accessors of a read-write property?it is not possible for only one accessor of a read-writeproperty to be virtual.An abstract property declaration specifies that the accessors ...
- 2006-05-14 14:26
- 浏览 668
- 评论(0)
An event is a member that enables an object or class to provide notifications. Clients can attach executable codefor events by supplying event handlers.Events are declared using event-declarations:event-declaration:attributesopt event-modifiersopt event type variable-declarators ;attributesopt event- ...
- 2006-05-14 14:26
- 浏览 352
- 评论(0)
Within the program text of the class or struct that contains the declaration of an event, certain events can be usedlike fields. To be used in this way, an event must not be abstract or extern, and must not explicitly includeevent-accessor-declarations. Such an event can be used in any context that p ...
- 2006-05-14 14:26
- 浏览 218
- 评论(0)
When a property declaration includes a static modifier, the property is said to be a static property. When nostatic modifier is present, the property is said to be an instance property.A static property is not associated with a specific instance, and it is a compile-time error to refer to this in the ...
- 2006-05-14 14:25
- 浏览 490
- 评论(0)
The accessor-declarations of a property specify the executable statements associated with reading and writing that property.accessor-declarations: get-accessor-declaration set-accessor-declarationoptset-accessor-declaration get-accessor-declarationoptget-accessor-declaration:attributesopt get accesso ...
- 2006-05-14 14:25
- 浏览 374
- 评论(0)
A property is a member that provides access to an attribute of an object or a class. Examples of properties includethe length of a string, the size of a font, the caption of a window, the name of a customer, and so on. Propertiesare a natural extension of fields?both are named members with associated ...
- 2006-05-14 14:24
- 浏览 342
- 评论(0)
The method overload resolution rules are described in §14.4.2.
- 2006-05-11 11:26
- 浏览 498
- 评论(0)
The method-body of a method declaration consists of either a block or a semicolon.Abstract and external method declarations do not provide a method implementation, so their method bodiessimply consist of a semicolon. For any other method, the method body is a block (§15.2) that contains thestatements ...
- 2006-05-11 11:26
- 浏览 446
- 评论(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-11 11:25
- 浏览 700
- 评论(0)
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-11 11:25
- 浏览 583
- 评论(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-11 11:25
- 浏览 641
- 评论(0)