java线程中run 和start有什么区别
1个回答
展开全部
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
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询