【转】run方法与start方法的区别
阅读原文时间:2023年07月08日阅读:3

在java线程中 start与run的不同
start与run方法的主要区别在于当程序调用start方法一个新线程将会被创建,并且在run方法中的代码将会在新线程上运行,然而在你直接调用run方法的时候,程序并不会创建新线程,run方法内部的代码将在当前线程上运行。大多数情况下调用run方法是一个bug或者变成失误。因为调用者的初衷是调用start方法去开启一个新的线程,这个错误可以被很多静态代码覆盖工具检测出来,比如与fingbugs. 如果你想要运行需要消耗大量时间的任务,你最好使用start方法,否则在你调用run方法的时候,你的主线程将会被卡住。另外一个区别在于,一但一个线程被启动,你不能重复调用该thread对象的start方法,调用已经启动线程的start方法将会报IllegalStateException异常,  而你却可以重复调用run方法

 public static void main(String\[\] args) {  
     System.out.println(Thread.currentThread().getName());  
     // creating two threads for start and run method call  
     Thread startThread = new Thread(new Task("start"));  
     Thread runThread = new Thread(new Task("run"));  

     startThread.start(); // calling start method of Thread - will execute in  
                             // new Thread  
     runThread.run(); // calling run method of Thread - will execute in  
                         // current Thread  
 }  

 /\*  
  \* Simple Runnable implementation  
  \*/  
 private static class Task implements Runnable {  
     private String caller;  

     public Task(String caller) {  
         this.caller = caller;  
     }  

     @Override  
     public void run() {  
         System.out.println("Caller: " + caller  
                 + " and code on this Thread is executed by : "  
                 + Thread.currentThread().getName());  

     }  
 }