Quiz 3 Flashcards
Problems using java arrays?
Fixed length
Cannot accommodate extra elements once created
Memory is allocated during creation only, much before the elements are added
Solution to java arrays?
ArrayLists
Problem with array lists?
Cannot store primitive data types (int, double, char, bool)
Solution to array list primitive problems?
Store their wrapper classes instead (interger, double, character, boolean)
Unboxing?
Is the method of taking an integer object and assigning its value to a primitive int
Boxing?
Is the method of taking a primitive int and assigning it to an integer object
Is-a test?
A teacher is-a person
A student is-a person
What is inheritance?
The ability of one class to adopt the data and attributes of other classes
Inheritance allows you to reuse methods that is already written to create more specialised versions of a class
Super keyword
Super refers to a child’s parent class
Method overriding?
Method in a subclass with same signature overrides method from base class
New method with same name with same signature
final modifer?
to specify that a method cannot be overridden in a subclass
Overloading?
New method in same class with same name but with different signature