Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

super() is implicitly placed in every constructor so that it acquires the methods mentioned in the parent class. The highest class in hierarchy is Object.

Question is where the super() of Object class point to?

share|improve this question

8 Answers

up vote 8 down vote accepted

You might find this interesting.

System.out.println("System.class.getSuperclass()= "+System.class.getSuperclass());
System.out.println("Object.class.getSuperclass()= "+Object.class.getSuperclass());

prints

System.class.getSuperclass()= class java.lang.Object
Object.class.getSuperclass()= null
share|improve this answer
Thank you very much it is really helpful........!!! – chetan Jan 13 '12 at 5:58
If you find an answer you can accept (after waiting for people to answer as you can get a better answer later) you can tick the answer on the left to accept it. This will improve your accept rate. – Peter Lawrey Jan 13 '12 at 8:30

It's instructive to check out the source code for Object

As you can see, it doesn't have a base class (note that implicitly the base class would be Object but how can that be in this case?)

As noted in the code comments, it's the root of the Java hierarchy. As such, it's a special case and doesn't have a superclass invocation.

share|improve this answer

The Object class cannot have a super() it is the highest item in the class hierarchy. Everything below it will have a super() but not Object.

share|improve this answer

See 12.5 Creation of New Class Instances of the JLS

If this constructor is for a class other than Object, then this constructor will begin with an explicit or implicit invocation of a superclass constructor (using super).

share|improve this answer
+1 for explicit definition in the JLS – Mark Rotteveel Jan 10 '12 at 13:41

There would be no super in Object.

share|improve this answer

The object class is in the base of the all classes in java so there will not any call of super() in the constructor of object class.

It does not extended by any class so its obvious that it do not call super in its constructor.

share|improve this answer

Think as the chain stops at Object.

Like A -> super() -> B->super() -> stop

share|improve this answer

You can check this by writing two classes and extending one class from another

Ex:

Create class A as:

class A{

   int a, b;

   A(int a, int b){
   }

}

Create class B which extends class A:

class B extends A{
    public static void main(String a[]){
        B b = new B();
    } 
}

You will get an error while you try to create an object of class B, because the class B default constructor gets called and which intrun calls default constructor of the super class "A", but the class A does not have any default or zero parameter constructor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.