c# 线程 其他信息: 线程正在运行或被终止;它无法重新启动.
publicstaticvoidStartSever(){Threadth=newThread(iftime);while(true){th.Start();//启动线程...
public static void StartSever()
{
Thread th = new Thread(iftime);
while (true)
{
th.Start();//启动线程
Thread.Sleep(5000);
counting++;
}
}
“System.Threading.ThreadStateException”类型的异常在 mscorlib.dll 中发生,但未在用户代码中进行处理
其他信息: 线程正在运行或被终止;它无法重新启动。
怎么会这样。。。
th.Start();//启动线程
Thread.Sleep(5000);
counting++;
th.Abort();
也不行。。。 展开
{
Thread th = new Thread(iftime);
while (true)
{
th.Start();//启动线程
Thread.Sleep(5000);
counting++;
}
}
“System.Threading.ThreadStateException”类型的异常在 mscorlib.dll 中发生,但未在用户代码中进行处理
其他信息: 线程正在运行或被终止;它无法重新启动。
怎么会这样。。。
th.Start();//启动线程
Thread.Sleep(5000);
counting++;
th.Abort();
也不行。。。 展开
2018-07-24
展开全部
线程不能二次start()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
while (true)
{
th.Start();//启动线程
这个是什么意思,或者说你想做什么,线程在中止之前只能被启动一次,如果你是想启动多个线程,可以这样
while (true)
{
Thread th = new Thread(iftime);
th.Start();//启动线程
Thread.Sleep(5000);
counting++;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询