Week 5 Flashcards
The process of acquiring the properties (methods and fields) of another
Inheritance
Types of inheritance
Single
Multi-level
Hierarchical
Multiple
In hierarchical inheritance, Class B and C both
Inherit from class A
In multiple inheritance, Class C
inherits from both A and B
The ______ keyword is used to enforce inheritance of the properties of a class
extends
Syntax: Class Subclass extends Superclass
T/F - The vehicle superclass extends the car subclass
False
What’s an advantage of inheritance?
Lets you reuse code instead of duplicating it.
What does a subclass inherit from a sueprclass?
All members (methods, fields)
T/F - Since a car is a special type of vehicle, we can use a car object in algorithms that manipulate vehicle objects
True
Explain the substitution principle
You can always use a subclass object when a superclass object is expected.
IE. A method that processes vehicle objects can handle any kind of vehicle
Is a quiz a subclass of a question?
No, quizzes and questions are not related in that way.
You should use a single class for variation in…
Whereas you should use inheritance for variation in….
You should use a single class for variation in values
Whereas you should use inheritance for variation in behavior
Class Manager and Class Employee, who would be the superclass? Who would be the subclass?
Manager would be a subclass of employee. You must first be an employee to be a manager.
T/F - A subclass will inherit all methods, unless it overrides them
True
What is important to specify when making a subclass?
Specify what makes it different from the superclass
Do you re-declare instance variables in a subclass?
No, unless you want an instance variable that is not already part of the superclass
Does a subclass inherit private members?
Subclasses do not.
Objects of a subclass contain the private members of the superclass. Despite not being able to access them, they are there.
When inheriting methods, what do you do if the inherited behaviour is not required in the subclass?
Change the implementation of the methods
T/F - When you provide a new implementation for an inherited method, you override the method
True
ChoiceQuestion is a subclass of Question. What are 3 ways the ChoiceQuestion objects class would differ from the Question objects class?
- There’s now a method for choosing/storing an answer
- There’s objects to store the possible choices
- There’s a display method to show the possible choices
After making the 3 differences, the ChoiceQuestion class must _______ that these changes were made
specify
T/F - Subclasses cannot access private instance variables, therefore they must use the public methods of the superclass
True
Since subclasses cannot access private variables of the superclass, that means they were not inherited.
False. Private fields are inherited, you just can’t access them.
T/F - An overriding method can extend or replace the functionality of the superclass method
True
What is one possible solution when you need to access a private field of the superclass?
Use the reserved word “super” to call the required method
super.method(parameters if any)
This reserved word forces the execution of the superclass method
super
Are constructors considered members? What does that entail for inheritance? What is one caveat?
Constructors are not members. Therefore they’re not inherited by subclasses. The caveat is that constructors of the superclass can be invoked from the subclass.
The super keyword is similar to the ____ keyword. How?
this. It differentiates the members of the superclass from the subclass, if they have the same names.
Use the _____ keyword to differentiate between sub and super members
super
If you wish to call the superclass’ getSalary() method from inside the subclass’ getSalary() method you must
type super.getSalary()
Every class defined without the “extends” clause automatically extends what?
The class “object”. Sometimes referred to as “the cosmic superclass”
Tell me about the class object
The “object” class is the direct or indirect superclass of every Java class.
Name some methods that are defined in Java “object” class
toString - (String describing the object)
equals - (compares objects with each other)
hashCode (generates a numerical code)
This method is called whenever you concatenate a string with an object
toString
Why can the compiler invoke the toString method to concatenate?
It knows that every object has a toString method, since every class the object class
When using toString on an object, what happens?
It prints the objects class name, and the hash code of the object
BankAccount momsSavings = new BankAccount(5000);
String s = momsSavings.toString();
// Sets s to something like “BankAccount@d24606bf”
T/F - You can override the toString method to return something more to your liking
True
How does equals differ from == ?
Equals checks whether two objects have the same content, == tests whether 2 references are identical.
T/F - It’s not legal to store a superclass reference in a sublass variable
Check this one to ensure it’s accurate
False
IE.
ChoiceQuestion cq = new ChoiceQuestion()
Object obj = cq
What operator can you use to detect the object type of unknown objects?
IE. Object obj
instanceof
What is a ClassCast exception?
It’s a runtime error (important). When the application attempts to cast an object to another class, of which the original object is not an instance.
How can do a safe cast using the instanceof operator?
if (obj instanceof Question)
{
Question q = (Question)obj;
}
Why does System.out.println(System.out); produce java.io.PrintStream@7a84e4?
There’s no toString() method inside of the PrintStream class
Will the following code compile?
Object obj = “Hello”;
System.out.println(obj.length());
The second line will not compile, as the class Object does not have the method “length”
Object obj = “Who was the inventor of Java?”;
Question q = (Question) obj;
q.display()
Will it compile?
It will, but the 2nd line will throw a class cast exception. Question is not a superclass of String.
Why do we not store all objects in variables of type object?
There are only a few method that can be invoked on variables of type object.
If x is an object reference, what is the value of “x instanceof Object”
If x is null the value is false, true otherwise
instanceof returns a ______ value
boolean
Can every class be inherited?
No not every class. Any class declared final cannot be inherited.