ConcurrentQueue.txt 20191106 ConcurrentQueue Represents a thread-safe first in-first out (FIFO) collection. 參考 Concurrent.txt using System; using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; class CQ_EnqueueDequeuePeek { // Demonstrates: // ConcurrentQueue.Enqueue() // ConcurrentQueue.TryPeek() // ConcurrentQueue.TryDequeue() static void Main () { // Construct a ConcurrentQueue. ConcurrentQueue cq = new ConcurrentQueue(); // Populate the queue. for (int i = 0; i < 10000; i++) { cq.Enqueue(i); } // Peek at the first element. int result; if (!cq.TryPeek(out result)) { Console.WriteLine("CQ: TryPeek failed when it should have succeeded"); } else if (result != 0) { Console.WriteLine("CQ: Expected TryPeek result of 0, got {0}", result); } int outerSum = 0; // An action to consume the ConcurrentQueue. Action action = () => { int localSum = 0; int localValue; while (cq.TryDequeue(out localValue)) localSum += localValue; Interlocked.Add(ref outerSum, localSum); }; // Start 4 concurrent consuming actions. Parallel.Invoke(action, action, action, action); Console.WriteLine("outerSum = {0}, should be 49995000", outerSum); } } Remarks Note ConcurrentQueue implements the IReadOnlyCollection interface starting with the .NET Framework 4.6; in previous versions of the .NET Framework, the ConcurrentQueue class did not implement this interface.