First we create object of class like,
A a = new A();
when this line of code will execute,
constructor of class A will call. ok
Now class A's constructor is like this,
A(){
super();
}
when this constructor will call,
A's superclass constructor will also called,
And If I don't write super(); in constructor, then also call to super class constructor,
so my question is How Long the super class' constructor will call ?
because in
java every class create default constructor automatically(if not initialized).