Answers for "what is the meaning of static block in java program"

1

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.
Posted by: Guest on March-19-2021

Code answers related to "what is the meaning of static block in java program"

Browse Popular Code Answers by Language