Possible Duplicate:
Static Block in Java
I came across the following use of static
and did not figure out what it does.
I am aware of using for example static String hello = "World";
but I do not understand the following.
static {
loadFromProperties(new Properties());
}