線程操作之終止線程
時間:2020-08-15 作者:管理員(yuán) 點擊:715
線程的終止是通過Thread類的About方法來實現的,如果一(yī)個線程執行的時間太長,用戶有可能要終止這個線程,這就要使用此方法。
注意:在線程調用About方法時,會引發ThreadAboutException異常,如果沒有捕獲異常,線程将會終止。
代碼如下(xià):
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace 終止線程
{
class Program
{
public static void method()
{
for (int i = 1; i < 4000; i++)
{
if (i % 40 == 0)
{
Console.WriteLine(">");
}
else
{
Console.Write(">");
}
}
}
static void Main(string[] args)
{
ThreadStart ts = new ThreadStart(method);
Thread t = new Thread(ts);
Console.WriteLine("線程開(kāi)始啓動");
t.Start();
int i = 0;
while (t.IsAlive)
{
i++;
Thread.Sleep(5);//休眠5毫秒
if (i == 5)//循環五次終止線程
{
t.Abort();
Console.WriteLine("\r\n線程被終止");
}
}
Console.ReadKey();
}
}
}