class hierarchy
organized structure of all classes and subordinate sub-classes (in object-oriented programming) | ||||
Search Dictionary:
Class hierarchy definition was found in categories: Computer & Internet(1) Language, Idioms & Slang(1) Encyclopedia(1)
Class hierarchy Definition from Computer & Internet Dictionaries & Glossaries
| FOLDOC |
class hierarchy
<programming> A set of classes and their interrelationships.
One class may be a specialisation (a "subclass" or "derived class") of another which is one of its "superclasses" or "base classes".
When a method is invoked on an object it is first looked for in the object's class, then the superclass of that class, and so on up the hierarchy until it is found. Thus a class need only define those methods which are specific to it, and inherits methods from all its superclasses.
See also: multiple inheritance.
(1997-08-06)
<programming> A set of classes and their interrelationships.
One class may be a specialisation (a "subclass" or "derived class") of another which is one of its "superclasses" or "base classes".
When a method is invoked on an object it is first looked for in the object's class, then the superclass of that class, and so on up the hierarchy until it is found. Thus a class need only define those methods which are specific to it, and inherits methods from all its superclasses.
See also: multiple inheritance.
(1997-08-06)
Class hierarchy Definition from Language, Idioms & Slang Dictionaries & Glossaries
| hEnglish - advanced version |
class hierarchy
class hierarchy
a set of classes and their interrelationships.
class hierarchy
a set of classes and their interrelationships.
Class hierarchy Definition from Encyclopedia Dictionaries & Glossaries
| Wikipedia English - The Free Encyclopedia |
Class hierarchy
As in taxonomy, the classifications of species, a class hierarchy in computer science is a classification of object types, denoting objects as the instantiations of classes (class is like a blueprint, the object is what is built from that blueprint) inter-relating the various classes by relationships such as "inherits", "extends", "is an abstraction of", "an interface definition".
| See more at Wikipedia.org... |
