首页 > 解决方案 > ConcurrentQueue<> 中的 TryDequeue 和 TryTake 有什么区别?

问题描述

ConcurrentQeueue<>类中,TryDequeue()定义了额外的方法。但是,当它实现IProducerConsumerCollection<>时,它也有一个TryTake()方法。根据文档,他们都做同样的事情:

尝试出队

尝试在并发队列的开头删除并返回对象。

尝试

对于 ConcurrentQueue,此操作将尝试从 ConcurrentQueue 的开头移除对象。

为什么要为实现该TryDequeue方法而烦恼?

标签: .netconcurrent-queue

解决方案


ConcurrentQueue<> 中的 TryDequeue 和 TryTake 有什么区别

TryTake根据可用的源代码,调用没有区别TryDequeue

/// <summary>
/// Attempts to remove and return an object from the <see cref="Concurrent.IProducerConsumerCollection{T}"/>.
/// </summary>
/// <param name="item">
/// When this method returns, if the operation was successful, <paramref name="item"/> contains the
/// object removed. If no object was available to be removed, the value is unspecified.
/// </param>
/// <returns>true if an element was removed and returned successfully; otherwise, false.</returns>
/// <remarks>For <see cref="ConcurrentQueue{T}"/>, this operation will attempt to remove the object
/// from the beginning of the <see cref="ConcurrentQueue{T}"/>.
/// </remarks>
bool IProducerConsumerCollection<T>.TryTake([MaybeNullWhen(false)] out T item) => TryDequeue(out item);

来源:https ://source.dot.net/#System.Private.CoreLib/ConcurrentQueue.cs,201

为什么还要费心实现那个 TryDequeue 方法呢?

TryDequeue遵循与队列相关的预期名称约定,并且是ConcurrentQueue<>. 同样,TryTake遵循通常与生产者/消费者模式相关的命名约定。


推荐阅读