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

线程停止

时间:2015-06-16 14:28:37      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

                                                                    线程停止

方式1 stop(不推荐)

package com.exmaple.Thread;

public class Test1 {

/**
* 线程停止 方式1 stop(不推荐)
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Runna r=new Runna();
Thread t=new Thread(r);
t.start();
try{
Thread.sleep(5000);
}catch(InterruptedException e){
return ;
}
t.stop();
 

}

}
class Runna implements Runnable{
public static boolean flag=true;
@Override
public void run() {
// TODO Auto-generated method stub
while(flag){
System.out.println("hello");
}
}

}


* 方式2: 通过改变线程的运行状态

package com.exmaple.Thread;

public class Test1 {

/**
* 方式2: 通过改变线程的运行状态
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Runna r=new Runna();
Thread t=new Thread(r);
t.start();
try{
Thread.sleep(5000);
}catch(InterruptedException e){
return ;
}
// t.stop();
r.flag=false;

}

}
class Runna implements Runnable{
public static boolean flag=true;
@Override
public void run() {
// TODO Auto-generated method stub
while(flag){
System.out.println("hello");
}
}

}

线程停止

标签:

原文地址:http://www.cnblogs.com/meijing/p/4580465.html

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