线程thread同时实现了runnable和继承并覆盖了父类的run方法,为什么这里打印出来的是thread,有点没明白
new Thread(new Runnable() {
@Override
public void run() {
while(true) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("runnable---" + Thread.currentThread().getName());
}
}
}) {
public void run() {
while(true) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("thread---" + Thread.currentThread().getName());
}
};
}.start(); |