Hi
I came to know that in a inherited structure like a inherits b, b inherits c etc with each having a constructor when i create a object first constructor of Object is executed . Does it mean that memory for any object is actually defined in the Object(Object is the base class for all existing
java objects) constuctor method ?
Also please help me with
what will happen if I create an A object and A doesn't have a constructor
defined whereas B has a constructor defined ?
What if in the above case B has a constructor with 2 arguments and I have to call it in A's constructor ?
Thanks