本帖最后由 张向辉 于 2013-1-27 14:26 编辑
new Thread(new Runnable(){
public void run(){
while(true){
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("Runnable--:" + Thread.currentThread().getName());
}
}
}){
public void run(){
while(true){
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("Thread--:" + Thread.currentThread().getName());
}
}
}.start();
这里,为什么运行的结果是:Thread--。
是因为:父类没有,就去子类找的吗?是基于这个原则吗? 这里,可以用this表示当前线程吗? |