In this program, You will learn how to implement the first statement in the constructor with the super keyword in java.
B() {
super();
}
super(); -> It's a default and optional property.
class A {
A() {
System.out.println("A is called here");
}
}
class Main extends A {
Main() {
super();
System.out.println("B is called here");
}
public static void main(String args[]) {
Main obj = new Main();
}
}
A is called here
B is called here