Java   View all facts   Glossary   Help
specification > class > descendent > subclass
Updescendent

subclass comparison table
Subject is a subtopic of access create using inherit is a kind of define hide have example of creation use override has definition
descendentInheritanceany public class in other packages behaviour from its superclassclassa class type whose instances are the values of the class type  an implements clause to declare that it contains methods for each of the operations specified by the interfacemethods that are inherited from the class's superclassA class that inherits from another
subclassClassesoverridden methods using the keyword superthe extends keywordnone, some or all of its state from all its ancestorsdescendentuntil its direct superclass has been definedan inherited member variable by declaring a member variable with the same name
public class Movie extends Attraction
any member that is inheritedany method that is declared final in the superclassA class that is an extension of another class, and hence inherits from the other class

Updescendent