Inheritance

studied byStudied by 111 people
2.5(2)
Get a hint
Hint

inheritance

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

Explore top notes

note Note
studied byStudied by 6 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 11 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 11 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 57 people
Updated ... ago
5.0 Stars(3)
note Note
studied byStudied by 18 people
Updated ... ago
5.0 Stars(2)
note Note
studied byStudied by 9 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 8 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 1418 people
Updated ... ago
4.8 Stars(25)

Explore top flashcards

flashcards Flashcard29 terms
studied byStudied by 297 people
Updated ... ago
4.5 Stars(10)
flashcards Flashcard50 terms
studied byStudied by 8 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard80 terms
studied byStudied by 6 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard21 terms
studied byStudied by 2 people
Updated ... ago
5.0 Stars(2)
flashcards Flashcard144 terms
studied byStudied by 12 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard47 terms
studied byStudied by 9 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard49 terms
studied byStudied by 82 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard146 terms
studied byStudied by 10 people
Updated ... ago
5.0 Stars(1)