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

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?

share|improve this question
1  
This is very interesting. – Eliseo Ocampos Jul 22 '09 at 21:27
14  
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
A good question. I have started a similar in valjok.blogspot.com/2012/09/… and programmers.exchange where I show that there are cases where subfields must be initialized prior to the super(). So that the feature adds to complexity of doing things whereas it is not clear if positive impacts regarding to "code safety" overweight the negative ones. Yes, there are negative consequences of super always first. Surprisingly that nobody mentions this. I think that this is a conceptual thing and must be asked in programmers.exchange – Val Sep 10 '12 at 8:47
Thanks for clearly describing how to work around this restriction! – Grilse Feb 28 at 14:08

9 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

share|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
24  
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
2  
@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
2  
Agreeing with @JoeDaley I think the fact that C# does not have this restriction is enough to suggest that this problem can be solved in less ham-fisted ways. – Tom Lianza Jan 5 at 4:32
show 2 more comments

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.

share|improve this answer

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
    }        
}
share|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
3  
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

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.

share|improve this answer

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.

share|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
5  
Yup - you can't touch this. – Tom Hawtin - tackline Jul 22 '09 at 23:16
: - ) – Jason S Jul 23 '09 at 14:55

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

share|improve this answer
But this adds nothing over just adding the System.out.println("In initializer") as the first line after "super()", does it? What would be useful would be a way to execute code before the parent is constructed. – Svend Hansen Jul 26 '12 at 9:31
Indeed. If you will try to add something, you'll need so save the computed state somewhere. Even if compiler allows you to, what will be the temporary storage? Allocate one more field just for initialization? But this is waste of memory. – Val Sep 9 '12 at 7:50

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.

share|improve this answer
Care to comment the downvote? – DaveBall May 18 at 11:45

How about when you want to call super and this in a subclass?

class MountainBike extends Bicycle {

    private int seatHeight;

    public MountainBike(int seatHeight, int speed) {
        this(seatHeight);
        super(speed);
    }

    public MountainBike(int seatHeight) {
        this.seatHeight = seatHeight;
        this.setSpeed(0);
    }

    public void setHeight(int seatHeight) {
        this.seatHeight = seatHeight;
    }

}

MountainBike.java:6: call to super must be first statement in constructor
super(speed);
^ 1 error

(2)change the order of this and super, you have this:

MountainBike.java:6: call to this must be first statement in constructor this(seatHeight); ^ 1 error

share|improve this answer
2  
This one is easy to fix: you should do it the other way. The constructor with the most parameters does the actual job, all other constructors call it with the defaults. In your case MountainBike(int, int) calls super(speed); and then assigns this.seatHeight = seatHeight;. The second constructor MountainBike(int) simply calls this(seatHeight, 0);. – Alexey Ivanov Sep 14 '12 at 8:39

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.