有些问题,请看看。
public class A {
int i = 1;
public A() {
Thread thread = new Thread()
{
public void run() {
for(;;) {
A.this.run();
try {
sleep(1000);
} catch(InterruptedException ie) {
}
}
}
};
thread.start();
}
public void run() {
System.out.println("i = " + i);
i++;
}
public static void main(String[] args) throws Exception {
new A();
}
}
请问括号内的""是什么意思。。谢谢了。
一位牛人写的代码,偶看不懂。。