Possible duplicate:
Static block in Java
I came across the following use of static and did not understand what it was doing. I know to use, for example, static String hello = "World"; but I do not understand the following.
static { loadFromProperties(new Properties()); }
source share