I know how a static init block works.
Can anyone please tell me some typical uses of it.
|
|
||||
|
|
|
When you want to initialize one or more static variables in one place It is useful, because you can apply exception handling, which is not possible with the in-line initialization. For example:
can be initialized with
Another application is complex initialization. For example, if an item requires more than one line of code to be initialized. Let's say you have a configuration:
A third usage is to initialize some external API infrastructure. One example from my current project:
But, as Mykola Golubyev noted, static initialization blocks make code less readable, so use them with caution. static methods do the same thing more transparently. |
|||||
|
|
Just try to avoid use of static initialization block. Instead you can use private static initialization functions which will make your code more clean. I will refer to @Bozho for examples. Do not do
Use instead
or
|
|||||||||||||
|
|
|||
|
|
|
They're often used in conjunction with JNI code to ensure that the required native library is loaded:
|
|||
|
|
JDBC Driver Is a Popular ExampleWhy do you need
So, when you write (for example with the MySQL driver here):
The classloader attempts to load and link the |
|||
|
|
|
They can be used to create a DSL, as JMock does. For instance, to set an expectation that a user will be saved to the database:
|
|||
|
|
|
||||
|
|
