IForwardIterator<TValue> 接口

定义

迭代器的接口,只能通过使用递增运算符向前访问容器中的元素。 迭代器指向的元素可以写入和读出任意多次。 无论是需要输入迭代器还是输出迭代器,均可以使用向前迭代器。

generic <typename TValue>
public interface class IForwardIterator : Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue>, Microsoft::VisualC::StlClr::Generic::IOutputIterator<TValue>
public interface IForwardIterator<TValue> : Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue>, Microsoft.VisualC.StlClr.Generic.IOutputIterator<TValue>
type IForwardIterator<'Value> = interface
    interface IInputIterator<'Value>
    interface IOutputIterator<'Value>
Public Interface IForwardIterator(Of TValue)
Implements IInputIterator(Of TValue), IOutputIterator(Of TValue)

类型参数

TValue

受控序列中的元素的类型。

派生
实现

方法

Clone()

创建作为当前实例副本的新对象。

(继承自 ICloneable)
container()

获取迭代器正在遍历的容器。

(继承自 IBaseIterator<TValue>)
equal_to(IInputIterator<TValue>)

确定两个 IInputIterator<TValue> 对象是否相等。

(继承自 IInputIterator<TValue>)
get_bias()

获取迭代器的偏移。 偏移是迭代器相对于元素零的偏移量。

(继承自 IBaseIterator<TValue>)
get_cref()

返回对迭代器当前指向的元素的常量引用。

(继承自 IInputIterator<TValue>)
get_node()

获取迭代器指向的节点或元素。

(继承自 IBaseIterator<TValue>)
get_ref()

返回对迭代器当前指向的元素的引用。

(继承自 IOutputIterator<TValue>)
next()

将迭代器递增到基础容器中的下一个位置,如果已完全遍历该容器,则递增到容器末尾以外的第一个位置。

(继承自 IBaseIterator<TValue>)
valid()

确定迭代器是否有效并可安全用于遍历基础容器。

(继承自 IBaseIterator<TValue>)

适用于