Computer >> Máy Tính >  >> Lập trình >> C#

Thuộc tính Thread.CurrentThread trong C #

Thuộc tính Thread.CurrentThread trong C # được sử dụng để lấy luồng hiện đang chạy.

Cú pháp

Cú pháp như sau -

public static System.Threading.Thread CurrentThread { get; }

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ -

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);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Current running Thread = Demo Thread
Current state of Thread = Running
ManagedThreadId = 20
Thread belongs to managed thread pool? = True

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ khá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));
      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);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Current running Thread = Demo Thread
Current state of Thread = Running
ManagedThreadId = 29
Thread Id: 29
Thread belongs to managed thread pool? = True