首页  >  文章  >  后端开发  >  检查当前线程状态的 C# 程序

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

王林
王林转载
2023-09-13 10:41:021257浏览

检查当前线程状态的 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

以上是检查当前线程状态的 C# 程序的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除