Consider:
package test;
class Same {
void method() {
System.out.println("outer");
}
}
public class Main {
class Same {
void method() {
System.out.println("middle");
}
}
public static void main(String[] args) {
new Same().method(); // Compile time Exception: No enclosing instance of type Main is accessible
}
}
I know that the Inner class 'shadows' the outer class 'Same', thus why I'm getting compile error. I would like to know is it possible to create an instance of 'outer Same' in Main. If yes, how? Thanks.
p.s. I appreciate your answers, but, please first try the code you are suggesting. Also, I know how to change the code to make it work, I need to understand current situation without any change (like keeping the classes in different files).
You need to prefix with the package name (suppose the outer Same is in the test package):
This will print "outer".