如何檢查 C# 中的執行緒是否仍然存活


要檢查執行緒是否仍然存活,程式碼如下所示 −

示例

 演示

using System;
using System.Threading;
public class Demo {
   public static void Main() {
      Thread thread = new Thread(new ThreadStart(demo1));
      thread = Thread.CurrentThread;
      Console.WriteLine("Is the thread alive? = "+thread.IsAlive);
      ThreadPool.QueueUserWorkItem(new WaitCallback(demo2));
      Console.WriteLine("Current state of Thread = "+thread.ThreadState);
      Console.WriteLine("ManagedThreadId = "+thread.ManagedThreadId);
      thread.IsBackground = true;
      Console.WriteLine("Is the Thread a background thread? = "+thread.IsBackground);
   }
   public static void demo1() {
      Thread.Sleep(2000);
   }
   public static void demo2(object stateInfo) {
      Console.WriteLine("Thread belongs to managed thread pool? = "+Thread.CurrentThread.IsThreadPoolThread);
   }
}

輸出

這將產生以下輸出 −

Is the thread alive? = True
Current state of Thread = Running
ManagedThreadId = 775
Is the Thread a background thread? = True
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(demo));
      thread.Start();
      Console.WriteLine("Is the Thread alive? "+thread.IsAlive);
   }
   public static void demo() {
      Console.WriteLine("Thread belongs to managed thread pool? = "+Thread.CurrentThread.IsThreadPoolThread);
   }
}

輸出

這將產生以下輸出 −

Is the Thread alive? True
Thread belongs to managed thread pool? = False

更新於: 16-12-2019

476 次瀏覽

開啟您的 職業生涯

完成課程後即可獲得認證

開始
廣告