java线程中run 和start有什么区别
发布网友
发布时间:2024-10-24 13:55
我来回答
共1个回答
热心网友
时间:2024-10-31 21:48
thread.start()立即返回,然后启动新线程运行run()方法。
thread.run()只是运行run()方法,运行完毕之后才返回。
所以对于thread使用start()方法才是正确的方法。
public class Main {
public static void main(String[] args) {
MyThread thread = new MyThread();
System.out.println("before invoke");
thread.start();
System.out.println("after invoke");
}
public static class MyThread extends Thread {
public void run() {
try {
System.out.println("run start");
Thread.sleep(1000);
System.out.println("run end");
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
输出:
before invoke
after invoke
run start
run end
改成thread.run()之后输出:
before invoke
run start
run end
after invoke