AutoResetEvent和ManualResetEvent区别[C#]

AutoResetEvent 类

https://msdn.microsoft.com/zh-cn/library/System.Threading.AutoResetEvent(v=vs.100).aspx

Notifies a waiting thread that an event has occurred. This class cannot beinherited.

 

ManualResetEvent 类

https://msdn.microsoft.com/zh-cn/library/system.threading.manualresetevent(v=vs.100).aspx

Notifies one or more waiting threads that an event hasoccurred. This class cannot be inherited.

 

在.NET多线程编程中,AutoResetEvent和ManualResetEvent这两个类经常用到,他们的用法很类似,但也有区别。
Set方法将事件置为有信号的,Reset方法将事件置为无信号的,WaitOne等待事件变成有信号(即:如果某个线程调用WaitOne方法,则当事件处于有信号时,该线程会得到事件, 继续向下执行;该事件处于无信号状态时,会一直阻塞)。

可以通过构造函数的参数值来决定其初始状态,为true则为有信号的,为false则为无信号的。

 

其区别在于 AutoResetEvent.WaitOne()每次只允许一个线程进入,当某个线程得到事件后,AutoResetEvent会自动又将事件置为无信号状态,其他调用WaitOne的线程只有继续等待,也就是说,AutoResetEvent一次只唤醒一个线程;而 ManualResetEvent则可以唤醒多个线程,因为当某个线程调用了ManualResetEvent.Set()方法后,其他调用WaitOne的线程获得事件得以继续执行,而ManualResetEvent不会自动将事件置为无信号状态。也就是说,除非手工调用了ManualResetEvent.Reset()方法, ManualResetEvent将一直保持有信号状态,也就是说ManualResetEvent可以同时唤醒多个线程继续执行。

你可能感兴趣的:(C#)