如何在C#中检查线程的当前状态?
要检查线程的当前状态,代码如下:
示例
using System;
using System.Threading;
public class Demo {
public static void Main(){
Thread thread = new Thread(new ThreadStart(demo1));
ThreadPool.QueueUserWorkItem(new WaitCallback(demo2));
Console.WriteLine("Current state of Thread = "+thread.ThreadState);
Console.WriteLine("ManagedThreadId = "+thread.ManagedThreadId);
}
public static void demo1(){
Thread.Sleep(2000);
}
public static void demo2(object stateInfo){
Console.WriteLine("Thread belongs to managed thread pool? = "+Thread.CurrentThread.IsThreadPoolThread);
}
}输出结果
这将产生以下输出-
Current state of Thread = Unstarted ManagedThreadId = 3
示例
现在让我们来看另一个示例-
using System;
using System.Threading;
public class Demo {
public static void Main(){
Thread thread = new Thread(new ThreadStart(demo));
Console.WriteLine("ManagedThreadId = "+thread.ManagedThreadId);
Console.WriteLine("Current state of Thread = "+thread.ThreadState);
thread.Start();
Console.WriteLine("Current state of Thread = "+thread.ThreadState);
}
public static void demo(){
Console.WriteLine("Thread belongs to managed thread pool? = "+Thread.CurrentThread.IsThreadPoolThread);
}
}输出结果
这将产生以下输出-
ManagedThreadId = 3 Current state of Thread = Unstarted Thread belongs to managed thread pool? = False Current state of Thread = Running
热门推荐
10 母亲说生日祝福语 简短
11 新大学开学祝福语简短
12 舅舅大婚文案祝福语简短
13 朋友祝福语两字简短
14 朋友明天手术祝福语简短
15 春节拜年祝福语儿童简短
16 新年祝福语长辈简短红包
17 对别人新年祝福语简短
18 幸福卡片祝福语英文简短