Let\'s say I have three classes:
class A { A() { // super(); System.out.println(\"class A\"); } } class B extends A { B() {
There will be one and only one object will be created and ie. A object.
You can imagine like when class A extends B, then all methods and variables are copied to class A.