黑马程序员技术交流社区

标题: interrupt()的用法 [打印本页]

作者: hmyf150122    时间: 2015-1-7 22:12
标题: interrupt()的用法
class  stopThreadDemo
{
        public static void main(String[] args)
        {
                StopThread st=new StopThread();
                Thread t1=new Thread(st);
                Thread t2=new Thread(st);
                t1.start();
                t2.start();
                int num=0;
                while(true)
                {
                        if (num++==60)
                        {
                                t1.interrupt();
                                t2.interrupt();
                                break;
                        }
                        System.out.println(Thread.currentThread().getName()+".....main");

                }

                System.out.println("Over!");
        }
}
不太会interrupt()的用法,stop()方法已过时,线程停止还有什么方法呢?
作者: 李票    时间: 2015-1-11 22:00
学习学习




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2