本帖最后由 祁振朋 于 2013-3-21 17:59 编辑
- class Test
- {
- public static void main(String[] args)
- { int i=2;
- A a=new A();
- Thread b=new Thread (a);
- b.start();
- int j=b.i;
- System.out.print(j);
- }
- }
- class A implements Runnable
- {
- public int i=1;
- public void run(){
- this.i=10;
- }
- }
复制代码 int j=b.i; 为什么提示找不到符号?
|