Java 终止线程

1 什么是Java终止线程

如果任何线程处于睡眠或等待状态(即,调用sleep()或wait()方法),则在线程上调用interrupt()方法,会抛出InterruptedException中断睡眠或等待状态。如果线程未处于睡眠或等待状态,则调用interrupt()方法将执行正常行为,并且不会终止线程,而是将中断标志设置为true。首先让我们看看Thread类提供的用于终止线程的方法。

2 Thread类终止线程的方法

Thread类提供的3种终止线程的方法:

  • public void interrupt()
  • public static boolean interrupted()
  • public boolean isInterrupted()

3 Java终止线程的例子1

在此示例中,在终止线程之后,我们正在传播它,因此它将停止工作。如果我们不想停止线程,则可以在调用sleep() 或wait() 方法的地方进行处理。首先让我们看一下传播异常的示例。

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java终止线程的例子
 */
class Demo extends Thread{
    public void run(){
        try{
            Thread.sleep(1000);
            System.out.println("task");
        }catch(InterruptedException e){
            throw new RuntimeException("Thread interrupted..."+e);
        }

    }

    public static void main(String args[]){
        Demo t1=new Demo();
        t1.start();
        try{
            t1.interrupt();
        }catch(Exception e){System.out.println("Exception handled "+e);}

    }
}

输出结果为:

Exception in thread "Thread-0" java.lang.RuntimeException: Thread interrupted...java.lang.InterruptedException: sleep interrupted
	at com.yiidian.Demo.run(Demo.java:15)

4 Java终止线程的例子2

在此示例中,在终止线程之后,我们将处理异常,因此它将打破睡眠状态,但不会停止工作。

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java终止线程的例子
 */
class Demo extends Thread{
    public void run(){
        try{
            Thread.sleep(1000);
            System.out.println("task");
        }catch(InterruptedException e){
            System.out.println("Exception handled "+e);
        }
        System.out.println("thread is running...");
    }

    public static void main(String args[]){
        Demo t1=new Demo();
        t1.start();

        t1.interrupt();

    }
}

输出结果为:

Exception handled java.lang.InterruptedException: sleep interrupted
thread is running...

5 Java终止线程的例子3

如果线程未处于睡眠或等待状态,则调用interrupt()方法会将interrupted标志设置为true,以后Java程序员可以使用该标志来停止线程。

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java终止线程的例子
 */
class Demo extends Thread{

    public void run(){
        for(int i=1;i<=5;i++)
            System.out.println(i);
    }

    public static void main(String args[]){
        Demo t1=new Demo();
        t1.start();

        t1.interrupt();

    }
}

输出结果为:

1
2
3
4
5

6 isInterrupted和interrupted方法

isInterrupted() 方法返回终止标志true或false。静态interrupted() 方法将返回终止标志,如果该标志为true,则将标志设置为false。

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java终止线程的例子
 */
public class Demo extends Thread{

    public void run(){
        for(int i=1;i<=2;i++){
            if(Thread.interrupted()){
                System.out.println("code for interrupted thread");
            }
            else{
                System.out.println("code for normal thread");
            }

        }//end of for loop
    }

    public static void main(String args[]){

        Demo t1=new Demo();
        Demo t2=new Demo();

        t1.start();
        t1.interrupt();

        t2.start();

    }
}

输出结果为:

code for interrupted thread
code for normal thread
code for normal thread
code for normal thread

 

热门文章

优秀文章