IOutputIterator<TValue> 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
Iterator 的介面,只用於將序列正向寫入至容器。 Iterator 所指向的項目只能寫入一次。
generic <typename TValue>
public interface class IOutputIterator : Microsoft::VisualC::StlClr::Generic::IBaseIterator<TValue>
public interface IOutputIterator<TValue> : Microsoft.VisualC.StlClr.Generic.IBaseIterator<TValue>
type IOutputIterator<'Value> = interface
interface IBaseIterator<'Value>
Public Interface IOutputIterator(Of TValue)
Implements IBaseIterator(Of TValue)
類型參數
- TValue
受控制序列中項目的類型。
- 衍生
- 實作
方法
Clone() |
建立目前執行個體複本的新物件。 (繼承來源 ICloneable) |
container() |
取得 Iterator 所周遊的容器。 (繼承來源 IBaseIterator<TValue>) |
get_bias() |
取得 Iterator 的偏差。 偏差是 Iterator 從項目零開始的位移。 (繼承來源 IBaseIterator<TValue>) |
get_node() |
取得 Iterator 目前正指向的節點或項目。 (繼承來源 IBaseIterator<TValue>) |
get_ref() |
將參考傳回給 Iterator 目前正指向的項目。 |
next() |
將 Iterator 遞增至基礎容器中的下一個位置,或者,如果已完全周遊容器,就遞增至超過容器末端的第一個位置。 (繼承來源 IBaseIterator<TValue>) |
valid() |
判斷 Iterator 是否有效,以及是否可安全的用於周遊基礎容器。 (繼承來源 IBaseIterator<TValue>) |