最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Java終止正在運行的線程的三種方法

 更新時間:2025年03月21日 10:30:20   作者:城南vision  
停止一個線程意味著在任務(wù)處理完任務(wù)之前停掉正在做的操作,也就是放棄當前的操作,停止一個線程可以用Thread.stop()方法,但最好不要用它,本文給大家介紹了Java終止正在運行的線程的三種方法,需要的朋友可以參考下

前言

停止一個線程意味著在任務(wù)處理完任務(wù)之前停掉正在做的操作,也就是放棄當前的操作。停止一個線程可以用Thread.stop()方法,但最好不要用它。雖然它確實可以停止一個正在運行的線程,但是這個方法是不安全的,而且是已被廢棄的方法。在java中有以下3種方法可以終止正在運行的線程:

  1. 使用退出標志,使線程正常退出,也就是當run方法完成后線程終止。
  2. 使用stop方法強行終止,但是不推薦這個方法,因為stop和suspend及resume一樣都是過期作廢的方法。
  3. 使用interrupt方法中斷線程。

1. 停止不了的線程

interrupt()方法的使用效果并不像for+break語句那樣,馬上就停止循環(huán)。調(diào)用interrupt方法是在當前線程中打了一個停止標志,并不是真的停止線程。

public class MyThread extends Thread {
    public void run(){
        super.run();
        for(int i=0; i<500000; i++){
            System.out.println("i="+(i+1));
        }
    }
}

public class Run {
    public static void main(String args[]){
        Thread thread = new MyThread();
        thread.start();
        try {
            Thread.sleep(2000);
            thread.interrupt();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

輸出結(jié)果:

...
i=499994
i=499995
i=499996
i=499997
i=499998
i=499999
i=500000

2. 判斷線程是否停止狀態(tài)

Thread.java類中提供了兩種方法:

  1. this.interrupted(): 測試當前線程是否已經(jīng)中斷;
  2. this.isInterrupted(): 測試線程是否已經(jīng)中斷;

那么這兩個方法有什么圖區(qū)別呢?

我們先來看看this.interrupted()方法的解釋:測試當前線程是否已經(jīng)中斷,當前線程是指運行this.interrupted()方法的線程。

public class MyThread extends Thread {
    public void run(){
        super.run();
        for(int i=0; i<500000; i++){
            i++;
//            System.out.println("i="+(i+1));
        }
    }
}

public class Run {
    public static void main(String args[]){
        Thread thread = new MyThread();
        thread.start();
        try {
            Thread.sleep(2000);
            thread.interrupt();

            System.out.println("stop 1??" + thread.interrupted());
            System.out.println("stop 2??" + thread.interrupted());
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

運行結(jié)果:

stop 1??false
stop 2??false

類Run.java中雖然是在thread對象上調(diào)用以下代碼:thread.interrupt(), 后面又使用

System.out.println("stop 1??" + thread.interrupted());
System.out.println("stop 2??" + thread.interrupted());

來判斷thread對象所代表的線程是否停止,但從控制臺打印的結(jié)果來看,線程并未停止,這也證明了interrupted()方法的解釋,測試當前線程是否已經(jīng)中斷。這個當前線程是main,它從未中斷過,所以打印的結(jié)果是兩個false.

如何使main線程產(chǎn)生中斷效果呢?

public class Run2 {
    public static void main(String args[]){
        Thread.currentThread().interrupt();
        System.out.println("stop 1??" + Thread.interrupted());
        System.out.println("stop 2??" + Thread.interrupted());

        System.out.println("End");
    }
}

運行效果為:

stop 1??true
stop 2??false
End

方法interrupted()的確判斷出當前線程是否是停止狀態(tài)。但為什么第2個布爾值是false呢?官方幫助文檔中對interrupted方法的解釋:測試當前線程是否已經(jīng)中斷。線程的中斷狀態(tài)由該方法清除。 換句話說,如果連續(xù)兩次調(diào)用該方法,則第二次調(diào)用返回false。

下面來看一下inInterrupted()方法。

public class Run3 {
    public static void main(String args[]){
        Thread thread = new MyThread();
        thread.start();
        thread.interrupt();
        System.out.println("stop 1??" + thread.isInterrupted());
        System.out.println("stop 2??" + thread.isInterrupted());
    }
}

運行結(jié)果:

stop 1??true
stop 2??true

isInterrupted()并為清除狀態(tài),所以打印了兩個true。

3. 能停止的線程–異常法

有了前面學(xué)習(xí)過的知識點,就可以在線程中用for語句來判斷一下線程是否是停止狀態(tài),如果是停止狀態(tài),則后面的代碼不再運行即可:

public class MyThread extends Thread {
    public void run(){
        super.run();
        for(int i=0; i<500000; i++){
            if(this.interrupted()) {
                System.out.println("線程已經(jīng)終止, for循環(huán)不再執(zhí)行");
                break;
            }
            System.out.println("i="+(i+1));
        }
    }
}

public class Run {
    public static void main(String args[]){
        Thread thread = new MyThread();
        thread.start();
        try {
            Thread.sleep(2000);
            thread.interrupt();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

運行結(jié)果:

...
i=202053
i=202054
i=202055
i=202056
線程已經(jīng)終止, for循環(huán)不再執(zhí)行

上面的示例雖然停止了線程,但如果for語句下面還有語句,還是會繼續(xù)運行的。看下面的例子:

public class MyThread extends Thread {
    public void run(){
        super.run();
        for(int i=0; i<500000; i++){
            if(this.interrupted()) {
                System.out.println("線程已經(jīng)終止, for循環(huán)不再執(zhí)行");
                break;
            }
            System.out.println("i="+(i+1));
        }

        System.out.println("這是for循環(huán)外面的語句,也會被執(zhí)行");
    }
}

使用Run.java執(zhí)行的結(jié)果是:

...
i=180136
i=180137
i=180138
i=180139
線程已經(jīng)終止, for循環(huán)不再執(zhí)行
這是for循環(huán)外面的語句,也會被執(zhí)行

如何解決語句繼續(xù)運行的問題呢?看一下更新后的代碼:

public class MyThread extends Thread {
    public void run(){
        super.run();
        try {
            for(int i=0; i<500000; i++){
                if(this.interrupted()) {
                    System.out.println("線程已經(jīng)終止, for循環(huán)不再執(zhí)行");
                        throw new InterruptedException();
                }
                System.out.println("i="+(i+1));
            }

            System.out.println("這是for循環(huán)外面的語句,也會被執(zhí)行");
        } catch (InterruptedException e) {
            System.out.println("進入MyThread.java類中的catch了。。。");
            e.printStackTrace();
        }
    }
}

使用Run.java運行的結(jié)果如下:

...
i=203798
i=203799
i=203800
線程已經(jīng)終止, for循環(huán)不再執(zhí)行
進入MyThread.java類中的catch了。。。
java.lang.InterruptedException
 at thread.MyThread.run(MyThread.java:13)

4. 在沉睡中停止

如果線程在sleep()狀態(tài)下停止線程,會是什么效果呢?

public class MyThread extends Thread {
    public void run(){
        super.run();

        try {
            System.out.println("線程開始。。。");
            Thread.sleep(200000);
            System.out.println("線程結(jié)束。");
        } catch (InterruptedException e) {
            System.out.println("在沉睡中被停止, 進入catch, 調(diào)用isInterrupted()方法的結(jié)果是:" + this.isInterrupted());
            e.printStackTrace();
        }

    }
}

使用Run.java運行的結(jié)果是:

線程開始。。。
在沉睡中被停止, 進入catch, 調(diào)用isInterrupted()方法的結(jié)果是:false
java.lang.InterruptedException: sleep interrupted
 at java.lang.Thread.sleep(Native Method)
 at thread.MyThread.run(MyThread.java:12)

從打印的結(jié)果來看, 如果在sleep狀態(tài)下停止某一線程,會進入catch語句,并且清除停止狀態(tài)值,使之變?yōu)閒alse。

前一個實驗是先sleep然后再用interrupt()停止,與之相反的操作在學(xué)習(xí)過程中也要注意:

public class MyThread extends Thread {
    public void run(){
        super.run();
        try {
            System.out.println("線程開始。。。");
            for(int i=0; i<10000; i++){
                System.out.println("i=" + i);
            }
            Thread.sleep(200000);
            System.out.println("線程結(jié)束。");
        } catch (InterruptedException e) {
             System.out.println("先停止,再遇到sleep,進入catch異常");
            e.printStackTrace();
        }

    }
}

public class Run {
    public static void main(String args[]){
        Thread thread = new MyThread();
        thread.start();
        thread.interrupt();
    }
}

運行結(jié)果:

i=9998
i=9999
先停止,再遇到sleep,進入catch異常
java.lang.InterruptedException: sleep interrupted
 at java.lang.Thread.sleep(Native Method)
 at thread.MyThread.run(MyThread.java:15)

5. 能停止的線程—暴力停止

使用stop()方法停止線程則是非常暴力的。

public class MyThread extends Thread {
    private int i = 0;
    public void run(){
        super.run();
        try {
            while (true){
                System.out.println("i=" + i);
                i++;
                Thread.sleep(200);
            }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

public class Run {
    public static void main(String args[]) throws InterruptedException {
        Thread thread = new MyThread();
        thread.start();
        Thread.sleep(2000);
        thread.stop();
    }
}

運行結(jié)果:

i=0
i=1
i=2
i=3
i=4
i=5
i=6
i=7
i=8
i=9

Process finished with exit code 0

6.方法stop()與java.lang.ThreadDeath異常

調(diào)用stop()方法時會拋出java.lang.ThreadDeath異常,但是通常情況下,此異常不需要顯示地捕捉。

public class MyThread extends Thread {
    private int i = 0;
    public void run(){
        super.run();
        try {
            this.stop();
        } catch (ThreadDeath e) {
            System.out.println("進入異常catch");
            e.printStackTrace();
        }
    }
}

public class Run {
    public static void main(String args[]) throws InterruptedException {
        Thread thread = new MyThread();
        thread.start();
    }
}

stop()方法以及作廢,因為如果強制讓線程停止有可能使一些清理性的工作得不到完成。另外一個情況就是對鎖定的對象進行了解鎖,導(dǎo)致數(shù)據(jù)得不到同步的處理,出現(xiàn)數(shù)據(jù)不一致的問題。

7. 釋放鎖的不良后果

使用stop()釋放鎖將會給數(shù)據(jù)造成不一致性的結(jié)果。如果出現(xiàn)這樣的情況,程序處理的數(shù)據(jù)就有可能遭到破壞,最終導(dǎo)致程序執(zhí)行的流程錯誤,一定要特別注意:

public class SynchronizedObject {
    private String name = "a";
    private String password = "aa";

    public synchronized void printString(String name, String password){
        try {
            this.name = name;
            Thread.sleep(100000);
            this.password = password;
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}

public class MyThread extends Thread {
    private SynchronizedObject synchronizedObject;
    public MyThread(SynchronizedObject synchronizedObject){
        this.synchronizedObject = synchronizedObject;
    }

    public void run(){
        synchronizedObject.printString("b", "bb");
    }
}

public class Run {
    public static void main(String args[]) throws InterruptedException {
        SynchronizedObject synchronizedObject = new SynchronizedObject();
        Thread thread = new MyThread(synchronizedObject);
        thread.start();
        Thread.sleep(500);
        thread.stop();
        System.out.println(synchronizedObject.getName() + "  " + synchronizedObject.getPassword());
    }
}

輸出結(jié)果:

b  aa

由于stop()方法以及在JDK中被標明為“過期/作廢”的方法,顯然它在功能上具有缺陷,所以不建議在程序張使用stop()方法。

8. 使用return停止線程

將方法interrupt()與return結(jié)合使用也能實現(xiàn)停止線程的效果:

public class MyThread extends Thread {
    public void run(){
        while (true){
            if(this.isInterrupted()){
                System.out.println("線程被停止了!");
                return;
            }
            System.out.println("Time: " + System.currentTimeMillis());
        }
    }
}

public class Run {
    public static void main(String args[]) throws InterruptedException {
        Thread thread = new MyThread();
        thread.start();
        Thread.sleep(2000);
        thread.interrupt();
    }
}

輸出結(jié)果:

...
Time: 1467072288503
Time: 1467072288503
Time: 1467072288503
線程被停止了!

不過還是建議使用“拋異常”的方法來實現(xiàn)線程的停止,因為在catch塊中還可以將異常向上拋,使線程停止事件得以傳播。

到此這篇關(guān)于Java終止正在運行的線程的三種方法的文章就介紹到這了,更多相關(guān)Java終止正在運行的線程內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • Java使用Arthas查看接口方法的執(zhí)行時間的步驟

    Java使用Arthas查看接口方法的執(zhí)行時間的步驟

    在日常的開發(fā)和運維工作中,經(jīng)常需要監(jiān)控接口方法的執(zhí)行時間,以便排查性能問題或優(yōu)化代碼,Arthas 是一款強大的 Java 診斷工具,可以幫助我們輕松地查看接口方法的執(zhí)行時間,而無需修改代碼或重啟應(yīng)用,本文將詳細介紹如何使用 Arthas 來查看接口方法的執(zhí)行時間
    2025-05-05
  • 使用CXF和Jersey框架來進行Java的WebService編程

    使用CXF和Jersey框架來進行Java的WebService編程

    這篇文章主要介紹了使用CXF和Jersey框架來進行Java的WebService編程,Web service是一個平臺獨立的低耦合的自包含的基于可編程的web的應(yīng)用程序,需要的朋友可以參考下
    2015-12-12
  • Kotlin 基礎(chǔ)教程之泛型

    Kotlin 基礎(chǔ)教程之泛型

    這篇文章主要介紹了Kotlin 基礎(chǔ)教程之泛型的相關(guān)資料,需要的朋友可以參考下
    2017-06-06
  • Java讀取xml工具類實現(xiàn)方式

    Java讀取xml工具類實現(xiàn)方式

    文章介紹了自定義注解IXml工具類XmlUtils,并提供了一個示例,它解釋了如何處理XML文件,演示了相關(guān)實體類Order和OrderDetail,并給出了測試方法
    2026-04-04
  • Springboot項目使用AOP與自定義注解記錄請求日志方式

    Springboot項目使用AOP與自定義注解記錄請求日志方式

    這篇文章主要介紹了Springboot項目使用AOP與自定義注解記錄請求日志方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2025-06-06
  • 使用Springboot實現(xiàn)word在線編輯保存

    使用Springboot實現(xiàn)word在線編輯保存

    PageOffice目前支持的Web編程語言及架構(gòu)有:Java(JSP、SSH、MVC等),ASP.NET(C#、VB.NET、MVC、Razor等),PHP,ASP,本篇文章就帶你使用Springboot整合PageOffice實現(xiàn)word在線編輯保存
    2021-08-08
  • 深入理解Java的Spring框架中的IOC容器

    深入理解Java的Spring框架中的IOC容器

    IOC(Inversion of Control,控制反轉(zhuǎn))是Spring框架的核心,負責控制對象的生命周期與關(guān)系,接下來就讓我們跟隨文章來深入理解Java的Spring框架中的IOC容器:
    2016-07-07
  • 談?wù)凷pring Boot 數(shù)據(jù)源加載及其多數(shù)據(jù)源簡單實現(xiàn)(小結(jié))

    談?wù)凷pring Boot 數(shù)據(jù)源加載及其多數(shù)據(jù)源簡單實現(xiàn)(小結(jié))

    這篇文章主要介紹了談?wù)凷pring Boot 數(shù)據(jù)源加載及其多數(shù)據(jù)源簡單實現(xiàn),小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2019-04-04
  • Java多線程實現(xiàn)聊天客戶端和服務(wù)器

    Java多線程實現(xiàn)聊天客戶端和服務(wù)器

    這篇文章主要為大家詳細介紹了Java多線程聊天客戶端和服務(wù)器實現(xiàn)代碼,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-10-10
  • 詳解spring cloud分布式關(guān)于熔斷器

    詳解spring cloud分布式關(guān)于熔斷器

    這篇文章主要介紹了詳解spring cloud分布式關(guān)于熔斷器,詳細的介紹了什么是熔斷器和使用,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-08-08

最新評論

南投市| 临西县| 汶上县| 台东县| 安新县| 开化县| 汽车| 上栗县| 余姚市| 盐边县| 宁明县| 南乐县| 连平县| 修武县| 黑龙江省| 海城市| 西宁市| 秦安县| 永仁县| 泸溪县| 来安县| 类乌齐县| 呼图壁县| 庐江县| 双城市| 武宣县| 女性| 馆陶县| 伊宁县| 常州市| 苍山县| 许昌县| 溆浦县| 江孜县| 资讯 | 繁昌县| 百色市| 阿合奇县| 长武县| 渭南市| 会同县|