JAVA中 終止線程的方法

來源:互聯網
上載者:User

  Java的多線程編程中,java.lang.Thread類型包含了一些列的方法start(), stop(), stop(Throwable) and suspend(), destroy() and resume()。通過這些方法,我們可以對線程進行方便的操作,但是這些方法中,只有start()方法得到了保留。

  在Sun公司的一篇文章《Why are Thread.stop, Thread.suspend and Thread.resume Deprecated? 》中詳細講解了捨棄這些方法的原因。

  如果真的需要終止一個線程,可以使用以下幾種方法:

  1、讓線程的run()方法執行完,線程自然結束。(這種方法最好)

  2、通過輪詢和共用標誌位的方法來結束線程,例如while(flag){},flag的初始值設為真,當需要結束時,將flag的值設為false。(這種方法也不很好,因為如果while(flag){}方法阻塞了,則flag會失效)

  public class SomeThread implements Runnable {

  private volatile boolean stop = false;

  public void terminate() {

  stop = ture;

  }

  public void run() {

  while(stop) {

  // ... some statements

  }

  }

  }

  如果線程因為執行sleep()或是wait()而進入Not Runnable狀態,假如是wait() 用標誌位就方法就不行了,

  public final void wait(long timeout)

  throws InterruptedException

  此方法導致當前線程(稱之為 T)將其自身放置在對象的等待集中,然後放棄此對象上的所有同步要求。即當前線程變為等待狀態

  wait() 的標準使用方法

  synchronized(obj){

  while(<不滿足條件>){

  obj.wait();

  }

  滿足條件的處理過程

  }

  而您想要停止它,您可以使用第三種即

  3 使用interrupt(),而程式會丟出InterruptedException例外,因而使得執行緒離開run()方法,

  例如:

  public class SomeThread {

  public static void main(String[] args)

  {

  Thread thread=new Thread(new Runnable(){

  public void run() {

  while (!Thread.interrupted()) {

  // 處理所要處理的工作

  try {

  System.out.println("go to sleep");

  Thread.sleep(1000);

  } catch (InterruptedException e) {

  e.printStackTrace();

  System.out.println("i am interrupted!");

  }

  });

  thread.start();

  thread.interrupt();

  }

  }

  執行結果為:

  go to sleep

  i am interrupted!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.