java static block code example

Example 1: what is static block

Static Block:
 used for initializing statics members,
it belongs to the class and only one copy
and runs only once and before everything

I use it in configuration.reader class
  in my framework

Example 2: static block in java

// to create static block in java 
static{
  // code to be executed is placed here
}

// its placed inside class. its executed whenever the class is created not when its object is created or called.

Example 3: static block

Static Block:
 used for initializing statics members,
it belongs to the class and only one copy
and runs only once and before everything

I use it in configuration.reader class
  in my framework

Example 4: What is the static block

Static block is used to initialize the static data member. 
It is executed before the main method, 
at the time of classloading.

Tags:

Misc Example