Defining constructors Flashcards

1
Q

How do we call the superclass constructor from the subclass constructor ?

A

We call the super class constructor from the subclass constructor using the keyword ‘super()’

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

What is the characteristic of that keyword ?

A

The keyword super() can only be the first non commented statement of a constructor

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

Give an example where the constructor of the super class has parameters !

A

public class Animal {
private int age;
public Animal(int age) {
super();
this.age = age;
}
}

public class Zebra extends Animal {
public Zebra(int age) {
super(age);
}
public Zebra() {
this(4);
}
}

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

What happens if the parent class has more than one constructor ?

A

If the parent class has more than one constructor then the child class can use any valid parent constructor in its definition

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

Describe how the java compiler handle a class declared with no constructor !

A

When a class doesn’t have a constructor, the java compiler inserts automatically a default no argument constructor that contains in its body a call to the non-argument constructor of the super class using the ‘super’ keyword

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

Describe what happens if the parent class doesn’t have a no-argument constructor !

A

If a class doesn’t have a constructor and at the same time, extends a class that doesn’t have a no-argument constructor, this combination will produce a compilation error

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

Give an example that compiles as well as one that doesn’t compile !

A

EXAMPLE THAT COMPILES :

public class Mammal {
public Mammal(int age) {
}
}
public class Elephant extends Mammal {
public Elephant() {
super(10);
}
}

EXAMPLE THAT DOESN’T COMPILE :

public class Mammal {
public Mammal(int age) {
}
}

public class Elephant extends
Mammal { // DOES NOT COMPILE
}

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

Give the constructor rules with an example for each one ! (IMPORTANT)

A
  1. The first statement of every constructor is a call to another constructor within the class using this(), or a call to a constructor in the direct parent class using super().
  2. The super() call can not be used after the first statement of the constructor
  3. If no super() call is declared in a constructor, Java will insert a no-argument super() as the first statement of the constructor.
  4. If the parent doesn’t have a no-argument constructor and the child doesn’t define any constructors, the compiler will throw an error and try to insert a default no-argument constructor into the child class.
  5. If the parent doesn’t have a no-argument constructor, the compiler requires an explicit call to a parent constructor in each child constructor
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Give an important rule related to Parent and Child constructors with an example !

A

In Java, the parent constructor always runs before the child constructor because it is the topmost class in the hierarchy.

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