Abstract class
From CSSEMediaWiki
(Difference between revisions)
m (Reverted edits by Ebybymic (Talk); changed back to last version by Matthew Harward) |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
* [[Avoid concrete base classes]] | * [[Avoid concrete base classes]] | ||
* [[The top of the class hierarchy should be abstract]] | * [[The top of the class hierarchy should be abstract]] | ||
+ | * [[Superclass]] | ||
{{Nomenclature}} | {{Nomenclature}} | ||
[[Category: Nomenclature]] | [[Category: Nomenclature]] |
Latest revision as of 03:08, 25 November 2010
Any class that has abstract method declarations or any class inheriting from an abstract class without supplying an implementation for every abstract method in the super-class.
Objects of an abstract class cannot be instantiated. Abstract classes are commonly used in inheritance hierarchies.
See Also
Nomenclature | |
---|---|
Techniques: Abstraction | Aggregation versus Composition | Association versus Dependency | Coupling | Encapsulation | Information hiding | Inheritance | Multiple Inheritance | Overloading | Polymorphism
Features: Abstract class | Class versus Object | Component versus Module | Instance | Interface | Method | Package versus Namespace | Superclass | Subclass |