Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When is a Java Implicit Constructor called compared to the Base Class Constructor?

If I have something like this:

public class SuperClass
{
    SuperClass()
    {
        x = true;
    }
    public boolean x;
}

public class SubClass extends SuperClass
{
    SubClass()
    {
        x = false;
    }
}

and I eventually make a SubClass object. Will x be true or false? From http://docs.oracle.com/javase/specs/jls/se5.0/html/execution.html#12.5 it looks like it will be false.

like image 922
RowlandB Avatar asked Dec 28 '14 19:12

RowlandB


2 Answers

From Section 12.5 of the Java Language Specification (relevant part in bold):

Just before a reference to the newly created object is returned as the result, the indicated constructor is processed to initialize the new object using the following procedure:

  1. Assign the arguments for the constructor to newly created parameter variables for this constructor invocation.

  2. If this constructor begins with an explicit constructor invocation (§8.8.7.1) of another constructor in the same class (using this), then evaluate the arguments and process that constructor invocation recursively using these same five steps. If that constructor invocation completes abruptly, then this procedure completes abruptly for the same reason; otherwise, continue with step 5.

  3. This constructor does not begin with an explicit constructor invocation of another constructor in the same class (using this). 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). Evaluate the arguments and process that superclass constructor invocation recursively using these same five steps. If that constructor invocation completes abruptly, then this procedure completes abruptly for the same reason. Otherwise, continue with step 4.

  4. Execute the instance initializers and instance variable initializers for this class, assigning the values of instance variable initializers to the corresponding instance variables, in the left-to-right order in which they appear textually in the source code for the class. If execution of any of these initializers results in an exception, then no further initializers are processed and this procedure completes abruptly with that same exception. Otherwise, continue with step 5.

  5. Execute the rest of the body of this constructor. If that execution completes abruptly, then this procedure completes abruptly for the same reason. Otherwise, this procedure completes normally.

So the parent class's constructor will be invoked first (step 3), setting x to true. After the constructor of the superclass is processed and finished using the same steps recursively, the body of the child class's constructor will set it to false (step 5).

like image 101
M A Avatar answered Oct 23 '22 17:10

M A


In the original version of the code [*], the two classes are unrelated and BaseClass won't even compile since there isn't an x declared or inherited.

If you made BaseClass a subclass of SuperClass, x will be false, since SuperClass's constructor will run before BaseClass's.

[*] Before somebody edited the question to add extend SuperClass.

like image 42
NPE Avatar answered Oct 23 '22 18:10

NPE