Calling Inherited Class Members Flashcards

1
Q

What type of members can be accessed by a child class in its super class ?

A

A child class may have access to any public or protected members of its super class and if the child class is in the same package as the parent class, the child class may also have access to package-private members of its super class

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

Give an example for a child class accessing its super class members (methods and protected fields and indirectly private fields) !

A

class Fish {
protected int size;
private int age;

public Fish(int age) {
    this.age = age;
}

public int getAge() {
    return age;
} }

public class Shark extends Fish {
private int numberOfFins = 8;
public Shark(int age) {
super(age);
this.size = 4;
}
public void displaySharkDetails() {
System.out.print(“Shark with age: “+getAge());
System.out.print(“ and “+size+” meters long”);
System.out.print(“ with “+numberOfFins+” fins”);
}
}

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

Give a characteristic of the ‘this’ keyword in a child class !

A

You can use the this keyword in a child class to have access to parent members that are accessible as well as the child members

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

Give a characteristic of the ‘super’ keyword in a child class !

A

The ‘super’ keyword can only be used to access members of the parent class that are accessible from the child class

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

Give an example of how the exam may try to trick you with ‘super’ and ‘super()’ keywords !

A

the ‘super()’ keyword can only be used as the first non commented statement of a child’s constructor to call explicitly a parent’s constructor

the ‘super’ keyword can be used in a child’s class to call a parent’s member that is accessible

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