线程执行顺序
在做面试题的时候,发现有关线程执行顺序的一个常见考题:(纯纯考研审题)
package link;
public class Test {
public static void main(String[] args) {
Thread thread = new Thread() {
@Override
public void run() {
pong();
}
};
thread.run();
System.out.println("ping");
}
static void pong(){
System.out.println("pong");
}
}
上面这个程序中,在主线程中创建一个线程对象,审题不仔细就会出问题,以为考的是线程,谁知道这个线程调用的是run()方法,而不是start()方法,也就是说,还是只有一个主线程在执行,执行当然是先调用thread对象的run方法,再执行输出语句。
如果thread调用start方法,那么就是有两个线程,两个线程谁先执行完都有可能,所以出现‘pingpong’和‘pongping’都有可能。
ps:如果线程内部还有start方法如下,thread.start()并不是启动线程,只是调用这个普通方法罢了
class MyThread extends Thread{
@Override
public void run() {
System.out.println("[thread] execute RUN");
}
public void start() {
System.out.println("[method] execute RUN");
}
}
标签:顺序,run,thread,void,start,线程,执行,public
From: https://www.cnblogs.com/yliunyue/p/17227000.html