`

【转】为什么不使用Thread.stop()方法

阅读更多

为什么不能使用Thread.stop()方法?

从SUN的官方文档可以得知,调用Thread.stop()方法是不安全的,这是因为当调用Thread.stop()方法时,会发生下面两件事:

1. 即刻抛出ThreadDeath异常,在线程的run()方法内,任何一点都有可能抛出ThreadDeath Error,包括在catch或finally语句中。

2. 释放该线程所持有的所有的锁

 

当线程抛出ThreadDeath异常时,会导致该线程的run()方法突然返回来达到停止该线程的目的。ThreadDetath异常可以在该线程run()方法的任意一个执行点抛出。但是,线程的stop()方法一经调用线程的run()方法就会即刻返回吗?

 

 

Java代码 复制代码 收藏代码
  1. public static void main(String[] args) {   
  2.         try {   
  3.             Thread t = new Thread() {   
  4.                 public synchronized void run() {   
  5.                     try {   
  6.                         long start=System.currentTimeMillis();   
  7.                         for (int i = 0; i < 100000; i++)   
  8.                             System.out.println("runing.." + i);   
  9.                         System.out.println((System.currentTimeMillis()-start)/1000);   
  10.                     } catch (Throwable ex) {   
  11.                         System.out.println("Caught in run: " + ex);   
  12.                         ex.printStackTrace();   
  13.                     }   
  14.                 }   
  15.             };   
  16.             t.start();   
  17.             // Give t time to get going...   
  18.             Thread.sleep(100);   
  19.             t.stop(); // EXPECT COMPILER WARNING   
  20.         } catch (Throwable t) {   
  21.             System.out.println("Caught in main: " + t);   
  22.             t.printStackTrace();   
  23.         }   
  24.   
  25.     }  
[java] view plaincopy
 
  1. public static void main(String[] args) {  
  2.         try {  
  3.             Thread t = new Thread() {  
  4.                 public synchronized void run() {  
  5.                     try {  
  6.                         long start=System.currentTimeMillis();  
  7.                         for (int i = 0; i < 100000; i++)  
  8.                             System.out.println("runing.." + i);  
  9.                         System.out.println((System.currentTimeMillis()-start)/1000);  
  10.                     } catch (Throwable ex) {  
  11.                         System.out.println("Caught in run: " + ex);  
  12.                         ex.printStackTrace();  
  13.                     }  
  14.                 }  
  15.             };  
  16.             t.start();  
  17.             // Give t time to get going...  
  18.             Thread.sleep(100);  
  19.             t.stop(); // EXPECT COMPILER WARNING  
  20.         } catch (Throwable t) {  
  21.             System.out.println("Caught in main: " + t);  
  22.             t.printStackTrace();  
  23.         }  
  24.   
  25.     }  

 

假设我们有如上一个工作线程,它的工作是数数,从1到1000000,我们的目标是在它进行数数的过程中,停止该线程的运作。如果我们按照上面的方式来调用thread.stop()方法,原则上是可以实现我们的目标的,根据SUN官方文档的解释,加上在上面的程序中,主线程只休眠了100ms,而工作线程从1数到1000000所花时间大概是4-5s,那么该工作线程应该只从1数到某个值(小于1000000),然后线程停止。 

 

但是根据运行结果来看,并非如此。

 

结果:

。。。

 

runing..99998

runing..99999

5

 

 

。。。

 

runing..99998

runing..99999

4

 

每次运行的结果都表明,工作线程并没有停止,而是每次都成功的数完数,然后正常中止,而不是由stop()方法进行终止的。这个是为什么呢?根据SUN的文档,原则上只要一调用thread.stop()方法,那么线程就会立即停止,并抛出ThreadDeath error,查看了Thread的源代码后才发现,原先Thread.stop0()方法是同步的,而我们工作线程的run()方法也是同步,那么这样会导致主线程和工作线程共同争用同一个锁(工作线程对象本身),由于工作线程在启动后就先获得了锁,所以无论如何,当主线程在调用t.stop()时,它必须要等到工作线程的run()方法执行结束后才能进行,结果导致了上述奇怪的现象。

 

把上述工作线程的run()方法的同步去掉,再进行执行,结果就如上述第一点描述的那样了

 

可能的结果:


runing..4149
runing..4150
runing..4151
runing..4152runing..4152Caught in run: java.lang.ThreadDeath

 

或者

 

runing..5245
runing..5246
runing..5247
runing..5248runing..5248Caught in run: java.lang.ThreadDeath

 

 

 

接下来是看看当调用thread.stop()时,被停止的线程会不会释放其所持有的锁,看如下代码:

 

Java代码 复制代码 收藏代码
  1. public static void main(String[] args) {   
  2.         final Object lock = new Object();   
  3.         try {   
  4.             Thread t0 = new Thread() {   
  5.                 public void run() {   
  6.                     try {   
  7.                         synchronized (lock) {   
  8.                             System.out.println("thread->" + getName()   
  9.                                     + " acquire lock.");   
  10.                             sleep(3000);// sleep for 3s   
  11.                             System.out.println("thread->" + getName()   
  12.                                     + " release lock.");   
  13.                         }   
  14.                     } catch (Throwable ex) {   
  15.                         System.out.println("Caught in run: " + ex);   
  16.                         ex.printStackTrace();   
  17.                     }   
  18.                 }   
  19.             };   
  20.   
  21.             Thread t1 = new Thread() {   
  22.                 public void run() {   
  23.                     synchronized (lock) {   
  24.                         System.out.println("thread->" + getName()   
  25.                                 + " acquire lock.");   
  26.                     }   
  27.                 }   
  28.             };   
  29.   
  30.             t0.start();   
  31.             // Give t time to get going...   
  32.             Thread.sleep(100);   
  33.             //t0.stop();   
  34.             t1.start();   
  35.         } catch (Throwable t) {   
  36.             System.out.println("Caught in main: " + t);   
  37.             t.printStackTrace();   
  38.         }   
  39.   
  40.     }  
[java] view plaincopy
 
  1. public static void main(String[] args) {  
  2.         final Object lock = new Object();  
  3.         try {  
  4.             Thread t0 = new Thread() {  
  5.                 public void run() {  
  6.                     try {  
  7.                         synchronized (lock) {  
  8.                             System.out.println("thread->" + getName()  
  9.                                     + " acquire lock.");  
  10.                             sleep(3000);// sleep for 3s  
  11.                             System.out.println("thread->" + getName()  
  12.                                     + " release lock.");  
  13.                         }  
  14.                     } catch (Throwable ex) {  
  15.                         System.out.println("Caught in run: " + ex);  
  16.                         ex.printStackTrace();  
  17.                     }  
  18.                 }  
  19.             };  
  20.   
  21.             Thread t1 = new Thread() {  
  22.                 public void run() {  
  23.                     synchronized (lock) {  
  24.                         System.out.println("thread->" + getName()  
  25.                                 + " acquire lock.");  
  26.                     }  
  27.                 }  
  28.             };  
  29.   
  30.             t0.start();  
  31.             // Give t time to get going...  
  32.             Thread.sleep(100);  
  33.             //t0.stop();  
  34.             t1.start();  
  35.         } catch (Throwable t) {  
  36.             System.out.println("Caught in main: " + t);  
  37.             t.printStackTrace();  
  38.         }  
  39.   
  40.     }  

 

 

当没有进行t0.stop()方法的调用时, 可以发现,两个线程争用锁的顺序是固定的。

 

输出:

thread->Thread-0 acquire lock.
thread->Thread-0 release lock.
thread->Thread-1 acquire lock.

 

但调用了t0.stop()方法后,(去掉上面的注释//t0.stop();),可以发现,t0线程抛出了ThreadDeath error并且t0线程释放了它所占有的锁。

 

输出:

thread->Thread-0 acquire lock.
thread->Thread-1 acquire lock.
Caught in run: java.lang.ThreadDeath
java.lang.ThreadDeath
 at java.lang.Thread.stop(Thread.java:715)
 at com.yezi.test.timeout.ThreadStopTest.main(ThreadStopTest.java:40)

 

 

从上面的程序验证结果来看,thread.stop()确实是不安全的。它的不安全主要是针对于第二点:释放该线程所持有的所有的锁。一般任何进行加锁的代码块,都是为了保护数据的一致性,如果在调用thread.stop()后导致了该线程所持有的所有锁的突然释放,那么被保护数据就有可能呈现不一致性,其他线程在使用这些被破坏的数据时,有可能导致一些很奇怪的应用程序错误。

 

 

 

如何正确停止线程

关于如何正确停止线程,这篇文章(how to stop thread)给出了一个很好的答案, 总结起来就下面3点(在停止线程时):

1. 使用violate boolean变量来标识线程是否停止

2. 停止线程时,需要调用停止线程的interrupt()方法,因为线程有可能在wait()或sleep(), 提高停止线程的即时性

3. 对于blocking IO的处理,尽量使用InterruptibleChannel来代替blocking IO

 

核心如下:

 

If you are writing your own small thread then you should follow the following example code.

    private volatile Thread myThread;
    public void stopMyThread() {
        Thread tmpThread = myThread;
        myThread = null;
        if (tmpThread != null) {
            tmpThread.interrupt();
        }
    }
    public void run() {
        if (myThread == null) {
           return; // stopped before started.
        }
        try {
            // all the run() method's code goes here
            ...
            // do some work
            Thread.yield(); // let another thread have some time perhaps to stop this one.
            if (Thread.currentThread().isInterrupted()) {
               throw new InterruptedException("Stopped by ifInterruptedStop()");
            }
            // do some more work
            ...
        } catch (Throwable t) {
           // log/handle all errors here
        }
    }


转自:http://blog.csdn.net/liranke/article/details/8270543
分享到:
评论

相关推荐

    为什么不鼓励使用 Thread.stop?

    标题 "为什么不鼓励使用 Thread.stop" 涉及到的是Java多线程编程中的一个重要话题,主要探讨了为何在实际开发中不建议直接使用 `Thread.stop` 方法来终止一个线程的执行。 在Java中,`Thread.stop` 被设计为停止一...

    关闭线程.txt

    因此,自Java 1.2版本起,`Thread.stop()`方法已被标记为废弃,并强烈建议开发者不要使用。 ### 推荐的线程关闭方式:标志位控制 示例代码中展示了一种更安全、更优雅的线程关闭策略——通过设置一个共享的标志位...

    最新版的DebuggingWithGDB7.05-2010

    5.4 Stopping and Starting Multi-thread Programs . . . . . . . . . . . . . . . . . 5.4.1 All-Stop Mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5.4.2 Non-...

    多线程之06三种中止线程的方法比较.docx

    本文将探讨三种常见的线程中止方法:`thread.stop()`、`thread.interrupt()`以及使用`volatile`标志位。 #### 二、`thread.stop()`方法 `thread.stop()`方法用于强制停止一个线程。但在Java 5之后,该方法已被标记...

    java线程强制停止的两个Demo

    1. **`Thread.stop()` 方法**(不推荐使用) `Thread.stop()` 是Java早期提供的一种强制停止线程的方法,它会立即终止线程的执行,释放它所持有的所有锁。由于这个方法可能导致数据损坏和资源泄露,自Java 1.2以来已...

    java线程中断之interrupt和stop.docx

    使用`stop`方法可能会导致程序出现不稳定的情况。 ##### 3.2 方法签名 ```java public final void stop() ``` ##### 3.3 使用示例 下面是一个简单的示例,展示了如何使用`stop`方法终止线程: ```java public ...

    Java如何中断一个正在运行的线程[整理].pdf

    首先,我们要明确一点:Java中直接停止线程的方法,如`Thread.stop`,是不安全的并且不推荐使用。这是因为`Thread.stop`可能导致数据不一致性和资源泄露,由于它的潜在危害,未来可能会被完全移除。因此,开发人员...

    C++_thread.zip

    在C++编程中,多线程(Multithreading)是一个重要的概念,它允许程序同时执行...通过深入学习和实践C++_thread.zip中的文档和代码示例,你将能够熟练掌握C++多线程编程,为构建高效、可靠的并发应用程序打下坚实基础。

    java核心知识点整理.pdf

    本地方法区(线程私有) ................................................................................................................ 23 2.2.4. 堆(Heap-线程共享)-运行时数据区 ...........................

    Debugging with GDB --2007年

    5.4 Stopping and starting multi-thread programs . . . . . . . . . . . . . 6 Examining the Stack . . . . . . . . . . . . . . . . . . . . . . 51 6.1 6.2 6.3 6.4 6.5 6.6 7 Stack frames . . . . . . . . . ...

    认识Thread和Runnable

    * 当线程调用 stop 方法,即可使线程进入消亡状态,但是由于 stop 方法是不安全的,不鼓励使用,大家可以通过 run 方法里的条件变通实现线程的 stop。 Timer 和 TimerTask 的使用: Timer 是一种定时器工具,用来...

    Java中interrupt的使用.docx

    传统的`Thread.stop()`和`Thread.suspend()`方法由于可能导致数据不一致和资源泄漏等问题,已被弃用。取而代之的是使用中断机制,这个机制主要通过`interrupt()`, `isInterrupted()`, 和 `interrupted()`三个方法来...

    RT-Thread常见函数.zip_RTT_rt thread_rt-thread函数_rt_thread函数_手册

    《RT-Thread常见函数》是针对RT-Thread实时操作系统中常用函数的一份详细参考资料,旨在帮助开发者更好地理解和应用RTT的API。RT-Thread(简称RTT)是一款成熟、稳定且功能丰富的开源实时操作系统,广泛应用于物联网...

    JAVA核心知识点整理(有效)

    2.2.3. 本地方法区(线程私有) ................................................................................................................ 23 2.2.4. 堆(Heap-线程共享)-运行时数据区 .....................

    线程示例WorkerThread_demo

    这个类的实例可能会被`WorkerThread`在`DoWork`方法中使用,确保这些操作不会阻塞UI线程。 `AssemblyInfo.cs`是C#项目的元数据文件,包含关于程序集的信息,如版本、版权和公钥等。 `.csproj`和`.sln`文件是项目和...

    Java终止线程实例和stop()方法源码阅读

    在 main() 方法中,我们创建了一个 FlagExitThread 对象,并启动它,然后使用 Thread.sleep() 方法来等待一段时间,最后将 isExit 标志设置为 true,以终止线程。 Java 中的线程终止可以使用退出标志或 interrupt()...

    线程终止问题

    虽然 `Thread.stop()` 方法可以直接终止线程,但由于它可能导致数据不一致和资源泄露等问题,因此不推荐使用。`stop` 方法会立即停止线程,包括清理任何锁和对象状态,这可能会导致其他线程出现问题。因此,避免使用...

    Java线程如何终止.pdf

    Java线程的终止是多线程编程中一个重要的概念,因为正确地结束线程对于...避免使用`stop`方法,因为它可能导致程序的不稳定。在编写多线程程序时,确保线程的生命周期管理是健壮的,可以有效提高程序的可靠性和性能。

Global site tag (gtag.js) - Google Analytics