C#中的Thread.CurrentThread属性
C#中的Thread.CurrentThread属性用于获取当前正在运行的线程。
语法
语法如下-
public static System.Threading.Thread CurrentThread { get; }示例
现在让我们看一个例子-
using System;
using System.Threading;
public class Demo {
public static void Main() {
Thread thread = new Thread(new ThreadStart(demo1));
ThreadPool.QueueUserWorkItem(new WaitCallback(demo2));
thread = Thread.CurrentThread;
thread.Name ="Demo Thread";
Console.WriteLine("Current running Thread = "+thread.Name);
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 running Thread = Demo Thread Current state of Thread = Running ManagedThreadId = 20 Thread belongs to managed thread pool? = True
示例
现在让我们来看另一个例子-
using System;
using System.Threading;
public class Demo {
public static void Main() {
Thread thread = new Thread(new ThreadStart(demo1));
ThreadPool.QueueUserWorkItem(new WaitCallback(demo2));
thread = Thread.CurrentThread;
thread.Name ="Demo Thread";
Console.WriteLine("Current running Thread = "+thread.Name);
Console.WriteLine("Current state of Thread = "+thread.ThreadState);
Console.WriteLine("ManagedThreadId = "+thread.ManagedThreadId);
Console.WriteLine("Thread Id: {0}", Thread.CurrentThread.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 running Thread = Demo Thread Current state of Thread = Running ManagedThreadId = 29 Thread Id: 29 Thread belongs to managed thread pool? = True
热门推荐
10 病人祝福语老师寄语简短
11 新娘生孩子祝福语简短
12 婆婆66岁祝福语简短
13 今天孩子高考祝福语简短
14 送彩票生日祝福语简短
15 分别祝福语简短情话英文
16 画室揭牌仪式祝福语简短
17 女友妈妈生日祝福语简短
18 离别赠言离职祝福语简短