доступ к теневой переменной в локальном классе

Я новичок в 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();
}
}

почему я не могу получить доступ к теневой переменной в методе inTestOne () с ключевым словом this в строке 8

Ответы на вопрос(2)

Ваш ответ на вопрос