Inheriting variables Flashcards

1
Q

Give the rule for inheriting variables !

A

Variables can not be overridden, they can only be hidden by
declaring a variable in the subclass with the same name as the variable in the super class

When you create a variable in the child class with the same name as the variable in the parent class, this creates 2 copies of that variable within an instance of the child class, one copie for the parent reference and one copie for the child reference

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Give an example to showcase that the variable is hidden and not overridden !

A

class Flamingo {
protected int variable=47;
}
class TEST extends Flamingo {
private int variable=127;
public static void main(String[] args) {
Flamingo f=new TEST();
System.out.println(f.variable);
}
}

OUTPUT : 47

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Do the rules change when the variables are static ?

A

no

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Give a good practice for naming variables in a child class (with an example) !

A

When defining a new variable in a child class, it is considered good coding practice to select a name for the variable that is not already a public, protected, or default variable in use in a parent class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly