I found that in Java, there is a feature called static block, which includes code that is executed when a class is first loaded (I don't understand what 'loaded' means, does it mean initialized?). Is there any reason to do the initialization bit inside a static block and not in the constructor? I mean, even the constructor does the same thing, do all the necessary stuff when a class is first initialized. is there anything that the static block accomplishes which a constructor can't?
|
|
||||
| show 9 more comments |
|
If a class has static members that require complex initialization, a
However, if you want to populate it once, you can't do that with an in-line declaration. For that, you need a
If you wanted to be even more protective, you can do this:
Note that you cannot initialize To be fair, this is not a complete answer to your question. The
Note, though, that this is not replacing a A case where a
Particularly if you don't want to hard-wire any dependence into Note that there is also something called an instance initializer block. It is an anonymous block of code that is run when each instance is created. (The syntax is just like a
|
|||||||||||||
|
|
The static initializer runs when the class is loaded even if you never create any objects of that type.
|
||||
|
|
|
Constructor is invoked when a Object of that class is created. Static block is invoked when a classloader loads this class definition, so that we can initialize static members of this class. We should not be initializing static members from constructor as they are part of class definition not object |
|||||||||
|
|
You can't initialize static variables with a constructor -- or at least you probably shouldn't, and it won't be particularly useful. Especially when you're trying to initialize static constants that require significant logic to generate, that really ought to happen in a static block, not a constructor. |
|||
|
They're two separate things. You use a constructor to initialize one instance of a class, the static initialization block initializes static members at the time that the class is loaded. |
|||
|
|
|
static block does different thing than constructor . Basically there sre two different concepts. static block initializes when class load into memory , it means when JVM read u'r byte code. Initialization can ne anything , it can be variable initialization or any thing else which should be shared by all objects of that class whereas constructor initializes variable for that object only . |
|||
|
|
|
Static initializer will run if we initialize a class, this does not require that we instantiate a class. But the constructor is run only when we make an instance of the class. For example:
If we run:
Output:
We never created an instance so the constructor is not called, but static initializer is called. If we make an instance of a class, both static initilizer and the constructor run. No surprises.
Output:
Note that if we run:
Output: (empty) Declaring variable |
|||||||||||||
|
|
The static block is reqly useful when you do have to do some action even if no instances is still created. As example, for initializing a static variable with non static value. |
|||
|
|

mainand a constructor, which one is invoked earlier when an instance of the class is created? – Cupidvogel Dec 21 '12 at 18:10mainmethod is not run every time an instance of a class is created. It is only run when either explicitly invoked (just like any other static method) or when the JVM begins the application. – Tom G Dec 21 '12 at 19:42