C#中关于多个线程的启动与停止

for(inti=0;i<5;i++){ThreadThrRun=newThread(StartRun);ThrRun.Start();}如上代码,我启动了5个线程,在程... for (int i = 0; i < 5; i++)
{
Thread ThrRun = new Thread(StartRun) ;
ThrRun.Start();
}

如上代码,我启动了5个线程,在程序运行的过程中 如何关闭其中的某一个线程呢?
展开
 我来答
skyrickie
推荐于2016-04-01 · TA获得超过201个赞
知道答主
回答量:303
采纳率:0%
帮助的人:127万
展开全部
希望代码对你陵携有帮助
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;

namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Program p = new Program();
List<Thread> listThread = new List<Thread>(5);

Thread thread = null;
for (int i = 0; i < 5; i++)
{
thread = new Thread(new ThreadStart(p.ThreadMethod));
thread.Name = "Thread" + (i + 1);
Console.WriteLine("创建 Thread" + (i + 1));
listThread.Add(thread);
}

//关棚汪拍闭指定线程
foreach (Thread tempThread in listThread)
{
if (tempThread.Name == "Thread3")
{
Console.WriteLine(tempThread.Name + " 线程已关链羡闭");
tempThread.Abort();
}
}

Console.ReadLine();
}

private void ThreadMethod()
{

}
}
}
yinzuo1988
2010-09-08 · TA获得超过116个赞
知道答主
回答量:72
采纳率:0%
帮助的人:64.5万
展开全部
StartRun方法执行结码返侍世中束,线程就终止
也可以使用这两个方法终止线程,
th.Abort();
th.Interrupt()
但是,你的程序中Thread ThrRun 作用域在for中迟吵,
改改...
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式