Having the following code:
public class Main {
private Main() {}
class Test extends Main {
{
System.out.printf("This: %h\nEnclosed in: %h\n",
this, Main.this);
System.out.printf("Main.this is instance of %s\n\n" ,
Main.this.getClass());
}
}
public static strictfp void main(String... args) {
new Main().new Test();
}
}
Here are the questions:
- Were in memory does JVM store the reference Main.this ?
- Is this area (see 1) of memory reserved for normal top-level class instances?