What will be the output of the following program?
public class Lazy {
private static boolean initialized = false;
static {
Thread thread = new Thread(new Runnable() {
public void run() {
initialized = false;
}
});
thread.start();
try {
thread.join();
} catch (InterruptedException e) {
throw new AssertionError(e);
}
}
public static void main(String[] args) {
System.out.println(initialized);
System.out.println("http://java.meritcampus.com/");
}
}