what Object constuctor contains?

I had seen code for Object class it doent contain the Object() constructorwhy?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?
[258 byte] By [Java@kondala] at [2007-11-26 22:31:45]
# 1
every java class has an implicit/default constructor that takes no arguments
java_2006a at 2007-7-10 11:37:31 > top of Java-index,Java Essentials,New To Java...
# 2

> 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

georgemca at 2007-7-10 11:37:31 > top of Java-index,Java Essentials,New To Java...
# 3

> 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

georgemca at 2007-7-10 11:37:31 > top of Java-index,Java Essentials,New To Java...