Java requires that if you call this() or super() in a constructor, it must be the first statement. Why?

For example:

public class MyClass {
	public MyClass(int x) {}
}

public class MySubClass extends MyClass {
	public MySubClass(int a, int b) {
		int c = a + b;
		super(c);  // COMPILE ERROR
	}
}

The Sun compiler says "call to super must be first statement in constructor". The Eclipse compiler says "Constructor call must be the first statement in a constructor".

However, you can get around this by re-arranging the code a little bit:

public class MySubClass extends MyClass {
	public MySubClass(int a, int b) {
		super(a + b);  // OK
	}
}

Here is another example:

public class MyClass {
	public MyClass(List list) {}
}

public class MySubClassA extends MyClass {
	public MySubClassA(Object item) {
		// Create a list that contains the item, and pass the list to super
		List list = new ArrayList();
		list.add(item);
		super(list);  // COMPILE ERROR
	}
}

public class MySubClassB extends MyClass {
	public MySubClassB(Object item) {
		// Create a list that contains the item, and pass the list to super
		super(Arrays.asList(new Object[] { item }));  // OK
	}
}

So, it is not stopping you from executing logic before the call to super. It is just stopping you from executing logic that you can't fit into a single expression.

There are similar rules for calling this(). The compiler says "call to this must be first statement in constructor".

Why does the compiler have these restrictions? Can you give a code example where, if the compiler did not have this restriction, something bad would happen?

link|improve this question

77% accept rate
This is very interesting. – Eliseo Ocampos Jul 22 '09 at 21:27
5  
hatehatehatehatehate so much hate for this. Why can't there just be a "object not yet constructed" exception, so that I don't have to shove everything into one line? – Carson Myers Nov 13 '10 at 3:02
feedback

10 Answers

The parent class' constructor needs to be called before the subclass' constructor. This will ensure that if you call any methods on the parent class in your constructor, the parent class has already been set up correctly.

What you are trying to do, pass args to the super constructor is perfectly legal, you just need to construct those args inline as you are doing, or pass them in to your constructor and then pass them to super:

public MySubClassB extends MyClass {
        public MySubClassB(Object[] myArray) {
                super(myArray);
        }
}

If the compiler did not enforce this you could do this:

public MySubClassB extends MyClass {
        public MySubClassB(Object[] myArray) {
                someMethodOnSuper(); //ERROR super not yet constructed
                super(myArray);
        }
}

In cases where a parent class has a default constructor the call to super is inserted for you automatically by the compiler. Since every class in Java inherits from Object, objects constructor must be called somehow and it must be executed first. The automatic insertion of super() by the compiler allows this. Enforcing super to appear first, enforces that constructor bodies are executed in the correct order which would be: Object -> Parent -> Child -> ChildOfChild -> SoOnSoForth

link|improve this answer
agreed. You can't do anything with the object until its parent is constructed. You can work with other stuff, but not that object – CrazyJugglerDrummer Jul 22 '09 at 21:37
what about anonymous initializer blocks? check my answer. – Savvas Dalkitsis Jul 22 '09 at 21:41
@Savvas The anonymous intializer does not violate the order of constructor calls, so it is okay. The parent is constructed first, and then the anon initializer code is executed, so it is safe. The constructor bodies must be executed in the following order: Object constructor body -> Parent constructor body -> Child constructor body I believe it is to enforce this ordering that the call to super must be first, that way Objects body will execute first since it has no super and then it will unwind and execute the other constructor bodies. – anio Jul 22 '09 at 22:06
6  
I think I disagree, for two reasons... (1) Checking that super is the first statement is not sufficient to prevent that problem. For example, you could put "super(someMethodInSuper());" in your constructor. This attempts to access a method in the superclass before it is constructed, even though super is the first statement. (2) The compiler appears to implement a different check which is, by itself, sufficient to prevent this problem. The message is "cannot reference xxx before supertype constructor has been called". Therefore, checking that super is the first statement is not necessary. – Joe Daley Jul 23 '09 at 0:22
1  
@Joe You are correct, placing super() as the first statement does not prevent calling methods on the parent before it is called. As you mentioned that is a separate check. However it does enforce the order in which the bodies of the constructors are executed? Agreed? I believe that this is the reason for making the call to super() the first statement. – anio Jul 23 '09 at 0:39
feedback

I am fairly sure (those familiar with the Java Specification chime in) that it is to prevent you from (a) being allowed to use a partially-constructed object, and (b), forcing the parent class's constructor to construct on a "fresh" object.

Some examples of a "bad" thing would be:

class Thing
{
    final int x;
    Thing(int x) { this.x = x; }
}

class Bad1 extends Thing
{
    final int z;
    Bad1(int x, int y)
    {
        this.z = this.x + this.y; // WHOOPS! x hasn't been set yet
        super(x);
    }        
}

class Bad2 extends Thing
{
    final int y;
    Bad2(int x, int y)
    {
        this.x = 33;
        this.y = y; 
        super(x); // WHOOPS! x is supposed to be final
    }        
}
link|improve this answer
Should Bad1 and Bad2 extend Thing there? – Michael Myers Jul 22 '09 at 21:39
Ah, thanks. duh. – Jason S Jul 22 '09 at 22:06
1  
I disagree with Bad2 as x gets declared in Thing and simply must not be set anywhere else. As for Bad1, you're surely right, but a similar thing may happen when the super constructor invokes a method overridden in the subclass which accesses a (not yet initialized) variable of the subclass. So the restriction helps to prevent one part of the problem... which is IMHO not worth it. – maaartinus Apr 17 '11 at 8:16
feedback

Because the JLS says so. Could the JLS be changed in a compatible manner to allow it? Yup. However, it would complicate the language spec, which is already more than complicated enough. It wouldn't be a highly useful thing to do and there are ways around it (call another constructor with the result of a method this(fn()) - the method is called before the other constructor, and hence also the super constructor). So the power to weight ratio of doing the change is unfavourable.

link|improve this answer
just to clarify: the fn() you used in your example should be a static method, right? – Jason S Jul 22 '09 at 22:09
2  
Yup - you can't touch this. – Tom Hawtin - tackline Jul 22 '09 at 23:16
: - ) – Jason S Jul 23 '09 at 14:55
feedback

You can use anonymous initializer blocks to initialize fields in the child before calling it's constructor. This example will demonstrate :

public class Test {
    public static void main(String[] args) {
    	new Child();
    }
}

class Parent {
    public Parent() {
    	System.out.println("In parent");
    }
}

class Child extends Parent {

    {
    	System.out.println("In initializer");
    }

    public Child() {
    	super();
    	System.out.println("In child");
    }
}

This will output :

In parent
In initializer
In child

link|improve this answer
feedback

I've found a way around this by chaining constructors and static methods. What I wanted to do looked something like this:

public class Foo extends Baz {
  private final Bar m_myBar;

  public Foo(final String p_arg1, final String p_arg2) {
    // ...
    // ... Some other stuff needed to construct a 'Bar'...
    // ...
    final Bar b = new Bar(p_arg1, p_arg2);
    super(b.baz()):
    m_myBar = b;
  }
}

So basically construct an object based on constructor parameters, store the object in a member, and also pass the result of a method on that object into super's constructor. Making the member final was also reasonably important as the nature of the class is that it's immutable. Note that as it happens, constructing Bar actually takes a few intermediate objects, so it's not reducible to a one-liner in my actual use case.

I ended up making it work something like this:

public class Foo extends Baz {
  private final Bar m_myBar;

  private static Bar makeBar(final String p_arg1,  final String p_arg2) {
    // My more complicated setup routine to actually make 'Bar' goes here...
    return new Bar(p_arg1, p_arg2);
  }

  private Foo(final Bar p_bar) {
    super(p_bar.baz());
    m_myBar = p_bar;
  }

  public Foo(final String p_arg1, final String p_arg2) {
    this(makeBar(p_arg1, p_arg2));
  }
}

Legal code, and it accomplishes the task of executing multiple statements before calling the super constructor.

link|improve this answer
feedback

You asked why, and the other answers, imo, don't really say why it's ok to call your super's constructor, but only if it's the very first line. The reason is that you're not really calling the constructor. In C++, the equivalent syntax is

MySubClass: MyClass {

public:

 MySubClass(int a, int b): MyClass(a+b)
 {
 }

};

When you see the initializer clause on its own like that, before the open brace, you know it's special. It runs before any of the rest of the constructor runs and in fact before any of the member variables are initialized. It's not that different for Java. There's a way to get some code (other constructors) to run before the constructor really starts, before any members of the subclass are initialized. And that way is to put the "call" (eg super) on the very first line. (In a way, that super or this is kind of before the first open brace, even though you type it after, because it will be executed before you get to the point that everything is fully constructed.) Any other code after the open brace (like int c = a + b;) makes the compiler say "oh, ok, no other constructors, we can initialize everything then." So it runs off and initializes your super class and your members and whatnot and then starts executing the code after the open brace.

If, a few lines later, it meets some code saying "oh yeah when you're constructing this object, here are the parameters I want you to pass along to the constructor for the base class", it's too late and it doesn't make any sense. So you get a compiler error.

link|improve this answer
feedback
class A
{
  final int x;

  public A(int x)
  {
    this.x = x;
  }

  public int hashCode()
  {
    return x;
  }
}

class B extends A
{
  public B()
  {
    super(hashCode());
  }
}
link|improve this answer
I agree this is an example of something bad, but this doesn't actually cause the compiler error in question. – Joe Daley Mar 3 '11 at 5:14
In eclipse I'm getting "Cannot refer to an instance method while explicitly invoking a constructor". – maaartinus Apr 17 '11 at 8:03
feedback

I totally agree, the restrictions are too strong. Using a static helper method (as Tom Hawtin - tackline suggested) or shoving all "pre-super() computations" into a single expression in the parameter is not always possible, e.g.:

class Sup {
    public Sup(final int x_) { 
        //cheap constructor 
    }
    public Sup(final Sup sup_) { 
        //expensive copy constructor 
    }
}

class Sub extends Sup {
    private int x;
    public Sub(final Sub aSub) {
        /* for aSub with aSub.x == 0, 
         * the expensive copy constructor is unnecessary:
         */

         /* if (aSub.x == 0) { 
          *    super(0);
          * } else {
          *    super(aSub);
          * } 
          * above gives error since if-construct before super() is not allowed.
          */

        /* super((aSub.x == 0) ? 0 : aSub); 
         * above gives error since the ?-operator's type is Object
         */

        super(aSub); // much slower :(  

        // further initialization of aSub
    }
}

Using an "object not yet constructed" exception, as Carson Myers suggested, would help, but checking this during each object construction would slow down execution. I would favor a Java compiler that makes a better differentiation (instead of inconsequently forbidding an if-statement but allowing the ?-operator within the parameter), even if this complicates the language spec.

link|improve this answer
feedback
class A {
  private final int x;
  public A(int x_) { x = x_; }
  public getX() { return x; }
}

class B extends A {
  private int y = getX();
  public B {
    System.out.println("What is this:" + y);
    super(10);
  }
}
link|improve this answer
2  
What is this? this doesn't even compile. Does this reply have a point? – Savvas Dalkitsis Jul 22 '09 at 21:36
Sorry, didn't mean to make you think. It answers the very last question in the OP. "Can you give a code example where, if the compiler did not have this restriction, something bad would happen?" – caskey Jul 22 '09 at 21:38
The point is that it doesn't compile, and it's a good thing that it doesn't. – Michael Myers Jul 22 '09 at 21:39
1  
You could put that in as a description. And thank you for your kind words... – Savvas Dalkitsis Jul 22 '09 at 21:40
2  
@caskey "Because the question is in the question ..." No. Trust me, the question is quite long, the reader may read the other answers first and forget the question before they arrive here. Moreover, they may just give you -1 since your example at the first glance makes no sense. Put at least something like // <--- PROBLEM in your example or better write a short explanation. – maaartinus Apr 17 '11 at 8:09
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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