Menu

keywords-extends

Will Pittenger

Use this keyword to list the base classes your class derives from. Omit the clause if Object is the only class you need to derive from. Classes can derive from other classes, structures, and primitives. Structures can derive from primitives and other structures. See the sections on [Classes], [Structures], and [Derivation] more information.

[(\abstract\ | \static\)] \class\ identifier
    [extends baseClassList]
    [implements interfaceList]

Related

Wiki: Classes
Wiki: Derivation
Wiki: Enums
Wiki: Keywords
Wiki: Structures
Wiki: keywords-class
Wiki: keywords-destructor
Wiki: keywords-enum
Wiki: keywords-interface
Wiki: keywords-where