When do instance variables get initialized and values assigned?

前端 未结 2 1143
说谎
说谎 2020-12-03 05:46

When doees the instance variable get initialized? Is it after the constructor block is done or before it?

Consider this example:

public abstract cla         


        
相关标签:
2条回答

  • After consuming the answers and link provided here is my digest observation :


    Here is the flow:

    1. Enter Child class constructor. Child(){ ... }

    2. Invoke explicit super() [invoking Parent class constructor].

    3. Enter Parent() { ... } class constructor

    4. Invoke implicit super() [invoking Object class constructor]

    5. Enter Object(){ } (No super constructor calls)

    6. Recursive call for super class constructor end here.

    7. Returns for Object class constructor

    8. Now in Parent class constructor...Instance initializers and Instance variable initializers of Parent class gets executed.

    9. Rest of the Parent class constructor is executed and returns

    10. Now in Child class constructor. Instance initializers and Instance variable initializers of Child class gets executed.

    11. Then rest of the Child class constructor is executed and finishes the object initialization process.


    The reason attribute2 was NULL because

    1. attribute2 is assigned a value 200 @ step 9.
    2. But overridden to NULL in step 10

    Are there any design flaws?

    As Fabian Barney mention ::::: It's generally bad practise to call methods inside constructor that can be overridden by subclasses.

    When the memory for the atribute 1 & 2 are allocated in the heap ? Still figuring out. Appreciate any pointers.

    Thanks for Mike and Fabian

    0 讨论(0)
  • 2020-12-03 06:46

    When the memory for the atribute 1 & 2 are allocated in the heap ?

    The memory for the object as a whole is allocated when the new operator is invoked, before the java.lang.Object constructor is entered. Memory is allocated for individual Integer instances in init, but there is no point when memory is allocated for individual properties -- only whole objects.

    Curious to know why is attribute 2 is NULL ?

    The init method is called in the super constructor, so attribute2 is assigned new Integer(200), and then the subclass constructor is invoked which applies property initializers in the order they appear in the source code. This line

    private Integer attribute2 = null;
    

    overwrites the value assigned by init() to null.

    If you add a call to

     System.out.println("attribute 2 : " +attribute2);
    

    right after your call to super(); then this will become apparent.

    Are there any design flaws?

    Calling sub-class methods before the base class has finished initializing is dangerous. The sub-class might rely on its base-class's invariants to protect its own invariants, and if the base-class constructor has not completed, then its invariants may not hold.

    This is also likely to confuse C++ programmers and the like who would expect a call to init from the base class to invoke the base class's version since C++ rewrites the vtable pointer as constructors are entered.

    See The Java Language Specification for all the gory details.

    0 讨论(0)
提交回复
热议问题