ConcurrentQueue<T>.IProducerConsumerCollection<T>.TryTake 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试从 IProducerConsumerCollection<T> 中移除和返回一个对象。
virtual bool System.Collections.Concurrent.IProducerConsumerCollection<T>.TryTake([Runtime::InteropServices::Out] T % item) = System::Collections::Concurrent::IProducerConsumerCollection<T>::TryTake;
bool IProducerConsumerCollection<T>.TryTake (out T item);
abstract member System.Collections.Concurrent.IProducerConsumerCollection<T>.TryTake : 'T -> bool
override this.System.Collections.Concurrent.IProducerConsumerCollection<T>.TryTake : 'T -> bool
Function TryTake (ByRef item As T) As Boolean Implements IProducerConsumerCollection(Of T).TryTake
参数
- item
- T
如果操作成功,则此方法返回时,item
包含所移除的对象。 如果没有可供移除的对象,则不指定该值。
返回
如果成功删除并返回了元素,则为 true
;否则为 false
。
实现
注解
对于 ConcurrentQueue<T>,此操作将尝试从 的 ConcurrentQueue<T>开头删除 对象。