码迷,mamicode.com
首页 > 编程语言 > 详细

线程 interrupt()方法简介

时间:2016-05-13 14:18:26      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

class T implements Runnable

{

   Thread t1,t2;

   T()

   {

      t1=new Thread(this);

      t2=new Thread(this);

    }

   public void run()

   {

      if(Thread.currentThread()==t2)

      {

         t1.interrupt();

 

      }

      if(Thread.currentThread()==t1)

      {

        System.out.println("线程t1开始运行!");

try{

          System.out.println("线程t1开始休眠10s!");

         t1.sleep(10000);

         }

      catch(InterruptedException e)

         {

           System.out.println("线程t1被吵醒了!");

          } 

      }

   }

}

class A 

{

   public static void main(String args[])

   {   

      T t=new T();

      t.t1.start();

      t.t2.start();

    }

}

线程 interrupt()方法简介

标签:

原文地址:http://www.cnblogs.com/sxdxjava/p/5487588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!