Instance Initialization Block (IIB) in Java

Course Curriculum

Instance Initialization Block (IIB) in Java

Instance Initialization Block (IIB) in Java

In a Java program, operations can be performed on methods, constructors and initialization blocks. Instance Initialization Blocks or IIB are used to initialize instance variables . So firstly, constructor is invoked and the java compiler copies the instance initializer block in the constructor after the first statement super(). They run each time when object of the class is created.

Initialization blocks are executed whenever the class is initialized and before constructors are invoked.
They are typically placed above the constructors within braces.
It is not at all necessary to include them in your classes.

// Java program to illustrate
// Instance Initialization Block
class P_AI {
// Instance Initialization Block
{
System.out.println("IIB block");
}

// Constructor of P_AI class
P_AI() { System.out.println("Constructor Called"); }
public static void main(String[] args)
{
P_AI a = new P_AI();
}
}

Output

IIB block
Constructor Called
Multiple Instance Initialization Blocks in a Program

We can also have multiple IIBs in a single class. If the compiler finds multiple IIBs, then they all are executed from top to bottom i.e. the IIB which is written at the top will be executed first.

// Java program to illustrate
// execution of multiple
// Instance Initialization Blocks
// in one program
class P_AI {
// Instance Initialization Block - 1
{
System.out.println("IIB1 block");
}

// Instance Initialization Block - 2
{
System.out.println("IIB2 block");
}

// Constructor of class P_AI
P_AI() { System.out.println("Constructor Called"); }

// Instance Initialization Block - 3
{
System.out.println("IIB3 block");
}

// main function
public static void main(String[] args)
{
P_AI a = new P_AI();
}
}
Output

IIB1 block
IIB2 block
IIB3 block
Constructor Called

Instance Initialization Block with parent class

You can have IIBs in parent class also. Instance initialization block code runs immediately after the call to super() in a constructor. The compiler executes parents class’s IIB before executing current class’s IIBs.

Have a look at the following example.

// Java program to illustrate
// Instance Initialization Block
// with super()

// Parent Class
class B {
B() { System.out.println("B-Constructor Called"); }

{
System.out.println("B-IIB block");
}
}

// Child class
class A extends B {
A()
{
super();
System.out.println("A-Constructor Called");
}
{
System.out.println("A-IIB block");
}

// main function
public static void main(String[] args)
{
A a = new A();
}
}
Output
B-IIB block
B-Constructor Called
A-IIB block

A-Constructor Called
In the above example, the compiler tries to execute constructor of class A, when the object of class A is created. But it finds super() statement and goes to the parent class constructor first to be executed. Order of execution, in this case, will be as follows:

  • Instance Initialization Block of the superclass.
  • Constructors of the superclass.
  • Instance Initialization Blocks of the class.
  • Constructors of the class.

Important points:

  • Instance Initialization Blocks run every time a new instance is created.
  • Initialization Blocks run in the order they appear in the program
  • The Instance Initialization Block is invoked after the parent class constructor is invoked (i.e. after super() constructor call)
The Initializer Block in Java (Prev Lesson)
(Next Lesson) Static vs Dynamic Binding in Java