ConcurrentQueue<T>.GetEnumerator 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回在 ConcurrentQueue<T> 中逐一查看的列舉值。
public:
virtual System::Collections::Generic::IEnumerator<T> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<T> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
Public Function GetEnumerator () As IEnumerator(Of T)
傳回
ConcurrentQueue<T> 內容的列舉程式。
實作
備註
列舉表示佇列內容的時點快照集。 在呼叫 之後 GetEnumerator ,它不會反映集合的任何更新。 列舉值很安全,可搭配讀取和寫入佇列同時使用。
列舉值會依新增的順序傳回集合專案,也就是 FIFO 順序 (先出) 。