在C#中,ManualResetEvent是一種同步原語,用于控制多個線程之間的同步。
使用ManualResetEvent的基本步驟如下:
ManualResetEvent manualResetEvent = new ManualResetEvent(false); // 初始狀態(tài)為非終止狀態(tài)
manualResetEvent.WaitOne(); // 線程將在這里等待,直到接收到信號
manualResetEvent.Set(); // 發(fā)送信號,喚醒等待的線程
manualResetEvent.Reset(); // 重置為非終止狀態(tài)
完整示例代碼如下:
using System;
using System.Threading;
class Program
{
static ManualResetEvent manualResetEvent = new ManualResetEvent(false);
static void Main(string[] args)
{
// 創(chuàng)建線程并啟動
Thread t1 = new Thread(DoWork);
Thread t2 = new Thread(DoWork);
t1.Start();
t2.Start();
// 等待一段時間后發(fā)送信號
Thread.Sleep(2000);
Console.WriteLine("Sending signal...");
manualResetEvent.Set();
// 等待線程完成
t1.Join();
t2.Join();
Console.WriteLine("Done");
Console.ReadLine();
}
static void DoWork()
{
Console.WriteLine("Thread {0} waiting...", Thread.CurrentThread.ManagedThreadId);
manualResetEvent.WaitOne(); // 線程將在這里等待,直到接收到信號
Console.WriteLine("Thread {0} resumed", Thread.CurrentThread.ManagedThreadId);
}
}
這個示例中,創(chuàng)建了兩個線程t1和t2,并且啟動它們。然后,主線程等待2秒后發(fā)送信號給ManualResetEvent,兩個子線程在調用WaitOne方法時都會被阻塞,直到接收到信號后才會繼續(xù)執(zhí)行。最后,主線程等待兩個子線程完成后輸出"Done"。