> I had seen code for Object class it doent contain the
> Object() constructor
> why?Object is the super class for every class so once
> we create the object to our class it first look for
> Object class using super() so how it will get back to
> our class?
it's implicit
> every java class has an implicit/default constructor
> that takes no arguments
except for the ones that don't. for instance, any class that declares a constructor-with-arguments will not have that implicit constructor. nor will any inner classes have an implicit no-args constructor