Static Initialization
Typically static initialization block is used to initialize static variables of a class. The block is called at the time of class initialization. It is called only once. You can initialize static variables inline. If more complicated logic is required for initialization, a static initialization block can be used. The static initialization blocks are called in the order in which they occur, and they are called before the constructors.For example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class StaticTest { | |
static int i; | |
static { | |
System.out.println("Static Initialization block is called"); | |
i = 10; | |
} | |
StaticTest() { | |
System.out.println("Static Test Constructor is called"); | |
} | |
} | |
class Main { | |
public static void main (String args[]){ | |
System.out.println(StaticTest.i); | |
} | |
} |
The output of the above code is as shown below.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Static Initialization block is called | |
10 |
Instance Initialization
Instance Initialization or Initializer Block is called whenever an instance of the class is created.It can be used to execute code that is common to all constructors. This block is executed before the constructor is executed.
For example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class InitializerTest { | |
int i; | |
{ | |
System.out.println("Instance Initialization block is called"); | |
i = 5; | |
} | |
InitializerTest() { | |
System.out.println("Initializer Test Default Constructor is called"); | |
} | |
InitializerTest(int x) { | |
System.out.println("Initializer Test Parametrized Constructor is called"); | |
i = x; | |
} | |
} | |
class Main { | |
public static void main (String args[]){ | |
InitializerTest obj1 = new InitializerTest(); | |
System.out.println(obj1.i); | |
InitializerTest obj2 = new InitializerTest(10);; | |
System.out.println(obj2.i); | |
} | |
} |
The output of the above code is as shown below.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Instance Initialization block is called | |
Initializer Test Default Constructor is called | |
5 | |
Instance Initialization block is called | |
Initializer Test Parametrized Constructor is called | |
10 |
Ref: https://docs.oracle.com/javase/tutorial/java/javaOO/initial.html
No comments :
Post a Comment