In a class I have found this:
public class xxx {
private static List yyy;
private static int zzz;
static { // <- i don't understand this one...
init();
}
/* other code here */
}
I've never found static used in this way, what's mean? when that portion of code will be executed?
Thanks