Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

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