如果我有一個內部類(非靜態)例如:的Java內部類 - 訪問外部對象的變量
public class A {
int myNumber = 100;
class B {
}
public static void main(String[] args) {
A outerObj = new A();
B innerObj = outerObj.new B();
System.out.println("i want the access to the variable
myNumber by the innerObject");
}
}
我的意思是: 我將與innerObject想達到outerObject,看到了變量myNumber。 我可以做到這一點,只是如果我在一個B類的方法...但我希望到處都可以看到outerObj由內部變量....它有可能嗎? 如果不是爲什麼?
感謝
沒有可變的麻木。請澄清。 – MightyPork
@MightyPork他可能的意思是'myNumber' ... –
是的,我的意思是myNumber對不起 –