Inheritance

studied byStudied by 114 people
2.5(2)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 10

11 Terms

1
inheritance
a way to create relationships between classes
New cards
2
inheritance hierarchy
designed to quantify the relationship between these classes. It defines the parent class and all of it’s children classes
New cards
3
superclass
the parent class, it holds the most basic form of objects found in the overall program
New cards
4
subclass
the objects in this “child class” will be more specific compared to those found in the superclass, or parent class
New cards
5
multiple inheritance
A class MAY NOT have more than 1 direct superclass!! This is against the rules in Java!!
New cards
6
overidden
a child class can have the same method class as the parent class. Methods are resolved based on the class that the object was created in. The method will be called instead of the inherited parent method. child overrides the parent method
New cards
7
overloaded
2 methods with the same name but with different lists of parameters, they can differ in number or type
New cards
8
super keyword
keyword used to call a method in a class, useful when child class overrides and inherited method, yet it still wants to call it
New cards
9
extends
keyword used to specify the parent class to inherit from, that is followed by the name of the parent class, if extends isn’t mentioned, it will just inherit from the object class
New cards
10
static
a keyword used to indicate that an instance variable or a method is a part of the class and not an object that is created by the class
New cards
11
polymorphism
The runtime type of an object can be that type or any subclass of the declared type. All method calls are resolved starting with the class that created the object. If the method isn’t found in the class that created the object, then it will look to the parent class until it finds the method. The method must exist, or the code won’t compile
New cards
robot