interrupt的实际用法

       interrupt()方法是在运行的线程中进行对该线程打上中断标记,只是告诉线程是,这个线程可以被中断,但是不会去进行中断操作,线程会保持执行,直到线程的代码执行完毕为止。

        这个是线程方法:

public class MyService extends Thread{
	  
	public void run()
	{
		super.run();
		for(int i=0;i < 50000;i++)
		{
			System.out.println("是否被中断:"+this.isInterrupted());
			if(this.isInterrupted())
			{
				System.out.println("已经是停止状态了");
				break;
			}
			System.out.println("i="+ (i+1));
		}
		System.out.println("我被输出");
	}
}

这个是主线程main方法:

public class Run {
	public static void main(String[] args) {
		try {
		MyService thread =new MyService();
		thread.start();		
		 Thread.sleep(10);
		thread.interrupt();
		System.out.println("是否停止1:"+ thread.interrupted());
		System.out.println("是否停止2:"+ thread.interrupted());
		System.out.println("end!");
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}

下面是运行结果:

是否被中断:false
i=253
是否被中断:true
是否停止1:false
是否停止2:false
end!
已经是停止状态了

所以要想真正的中断一个线程,需要进行判断方法boolean interrupted()进行判断。

 

最后讲一下:

 中断线程。如果线程在调用 Object 类的 wait()wait(long) 或 wait(long, int) 方法,或者该类的 join()join(long)join(long, int)sleep(long) 或 sleep(long, int) 方法

  过程中受阻,则其中断状态将被清除,它还将收到一个 InterruptedException

    进行提前进行结束此状态,并进行抛出InterruptedException异常。 

转载于:https://my.oschina.net/u/1784495/blog/789641

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值