java thread 执行完后会自动关闭吗
4个回答
2014-04-05
展开全部
run方法内如果执行完,thread会自动关闭。
如果你在run方法内设定 while(true) ,则需要自己监控条件值,自行跳出循环。
如果你在run方法内设定 while(true) ,则需要自己监控条件值,自行跳出循环。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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)
{}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个会自动关闭的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询