Answers for "what is static block"

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
Posted by: Guest on January-05-2021
0

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
Posted by: Guest on January-05-2021
-1

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.
Posted by: Guest on November-28-2020
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
Posted by: Guest on January-05-2021
0

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
Posted by: Guest on January-05-2021
-1

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.
Posted by: Guest on November-28-2020

Browse Popular Code Answers by Language