java Thread 在一个方法中new 了一个 Thread ,当这个线程在运行时再调用另外一个方法关闭这个线程
试了stop()、destroy()没有用privateThreadthread;publicThreadgetThread(){thread=newThread(){/...
试了stop() 、 destroy() 没有用
private Thread thread;
public Thread getThread(){
thread= new Thread(){
//这里会有执行很久的代码
};
return thread;
}
public void execute(){
for....{
getThread().start();
}
}
public void stop(){
//调用这个方法销毁thread这个线程
} 展开
private Thread thread;
public Thread getThread(){
thread= new Thread(){
//这里会有执行很久的代码
};
return thread;
}
public void execute(){
for....{
getThread().start();
}
}
public void stop(){
//调用这个方法销毁thread这个线程
} 展开
4个回答
展开全部
public class StopThread() implements Runnable{
//停止线程的标记值boolean;
private boolean flag = true;
public void stopThread()(){
flag = false;
}
public void run(){
int i=0;
while(flag){
i++;
System.out.println(Thread.currentThread().getName()+":"+i);
try{
Thread.sleep(1000);
}catch(Exception e){
}
System.out.println(Thread.currentThread().getName()+"==>"+i);
}
}
public static void main(String args[]){
StopThread st = new StopThread();
Thread th = new Thread(st);
Thread th1 = new Thread(st);
th.start();
th1.start();
try{
Thread.sleep(5500);
}catch(Exception e){
}
/*
如果使用Thread.stop方法停止线程,不能保证这个线程是否完整的运行完成一次
run方法;但是如果使用停止的标记位,那么可以保正在真正停止之前完整的运行完
成一次run方法;
*/
th.stop();
st.stopThread();
}
}
你可以参考以上代码,也就是设置一个全局变量,然后试试
//停止线程的标记值boolean;
private boolean flag = true;
public void stopThread()(){
flag = false;
}
public void run(){
int i=0;
while(flag){
i++;
System.out.println(Thread.currentThread().getName()+":"+i);
try{
Thread.sleep(1000);
}catch(Exception e){
}
System.out.println(Thread.currentThread().getName()+"==>"+i);
}
}
public static void main(String args[]){
StopThread st = new StopThread();
Thread th = new Thread(st);
Thread th1 = new Thread(st);
th.start();
th1.start();
try{
Thread.sleep(5500);
}catch(Exception e){
}
/*
如果使用Thread.stop方法停止线程,不能保证这个线程是否完整的运行完成一次
run方法;但是如果使用停止的标记位,那么可以保正在真正停止之前完整的运行完
成一次run方法;
*/
th.stop();
st.stopThread();
}
}
你可以参考以上代码,也就是设置一个全局变量,然后试试
追问
不是我想要的,我的这个这样不行
展开全部
你首先要取得当前线程,然后在关闭,或者说你的thread可以定义一个循环,加上判断条件,然后你修改判断条件就停止了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-17
展开全部
可不可以贴出具体代码?这样好帮你具体分析下。
追问
OK,你再看看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询