阅读量:0
在多线程程序中,可以使用ManualResetEvent来协调线程之间的工作流程。具体使用方法如下:
- 创建一个ManualResetEvent对象:
ManualResetEvent manualResetEvent = new ManualResetEvent(false);
- 在需要等待的线程中调用WaitOne方法等待ManualResetEvent信号:
manualResetEvent.WaitOne();
- 在需要发送信号的线程中调用Set方法发送信号:
manualResetEvent.Set();
- 重置ManualResetEvent,使其重新变为非信号状态:
manualResetEvent.Reset();
通过这种方式,可以实现线程之间的同步操作,确保线程按照特定的顺序执行。ManualResetEvent比AutoResetEvent更加灵活,因为可以多次发送信号,而不仅限于一次。