| Author |
What is the main Use Static block ?
|
Praveen Kumar
Ranch Hand
Joined: Nov 06, 2006
Posts: 133
|
|
We can write static blocks in java like static { ..... ...... } Here we can initailise the varaibles before its construcor runs. Do we have any another use of the Static block ?
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
Actually that code is run when the class is loaded. Even when there will never be any object created, the code will still run. What you are thinking about are initializer blocks, which are the same but without the static keyword. Now these static initializers should be used to run code that are required for a class to function properly. That could be any code required. One example is loading libraries:
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: What is the main Use Static block ?
|
|
|