我是java的新手,我在下面的例子中感到困惑
public class Test {
int testOne(){ //member method
int x=5;
class inTest // local class in member method
{
void inTestOne(int x){
System.out.print("x is "+x);
// System.out.print("this.x is "+this.x);
}
}
inTest ins=new inTest(); // create an instance of inTest local class (inner class)
ins.inTestOne(10);
return 0;
}
public static void main(String[] args) {
Test obj = new Test();
obj.testOne();
}
}
Run Code Online (Sandbox Code Playgroud)
为什么我无法使用第8行中的"this"关键字访问inTestOne()方法中的shadowed变量