java thread 执行完后会自动关闭吗

 我来答
东洚jd
推荐于2017-10-14 · TA获得超过1299个赞
知道小有建树答主
回答量:380
采纳率:0%
帮助的人:281万
展开全部
如果代码该
thread线程中的代码执行结束就会关闭,但是如果该线程代码未执行完毕,即时主线程关闭,该线程也不会关闭
匿名用户
2014-04-05
展开全部
run方法内如果执行完,thread会自动关闭。
如果你在run方法内设定 while(true) ,则需要自己监控条件值,自行跳出循环。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yugi111
推荐于2017-09-12 · TA获得超过8.1万个赞
知道大有可为答主
回答量:5.1万
采纳率:70%
帮助的人:1.3亿
展开全部
package zhidao;

public class Test6 implements Runnable
{
int start = 0;
int times = 0;
Thread thread;

public Test6 ()
{
if (null == thread)
{
start ();
}
else
{
stop ();
}
}

public static void main ( String[] args )
{
new Test6 ();
}

public void start ()
{
if (null == thread)
{
thread = new Thread (this);
thread.setPriority (Thread.MIN_PRIORITY);
thread.setName (this.getClass ().getName ());
thread.start ();
}
}

public synchronized void stop ()
{
if (null != thread)
{
thread.interrupt ();
}
thread = null;
notifyAll ();
}

@Override
public void run ()
{
try
{
while (true)
{
if (times == 9)
{
stop ();
break;
}
start++;
if (start == 11)
{
times++;
start = times + 1;
}
System.out.print (start);
Thread.sleep (100);
}
}
catch (InterruptedException e)
{}
}
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
飞花岁月2007
2015-06-23 · TA获得超过377个赞
知道小有建树答主
回答量:505
采纳率:78%
帮助的人:333万
展开全部
这个会自动关闭的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式