C# 程序,检查当前线程状态


若要检查 C# 中当前线程的状态,请使用 IsAlive 属性。

首先,使用 currentThread 属性显示线程信息 -

Thread thread = Thread.CurrentThread;

现在使用 thread.IsAlive 属性检查线程的状态 -

thread.IsAlive

示例

让我们看看完成的代码,以便在 C# 中检查当前线程的状态。

在线演示

using System;
using System.Threading;
namespace Demo {
   class MyClass {
      static void Main(string[] args) {
         Thread thread = Thread.CurrentThread;
         thread.Name = "My New Thread";
         Console.WriteLine("Thread Status = {0}", thread.IsAlive);
         Console.ReadKey();
      }
   }
}

输出

Thread Status = True

更新于: 19-Jun-2020

3K+ 次浏览

开启你的 职业生涯

完成课程,获得认证

开始
广告