what is the static block in java code example
Example: 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.