ConstReverseBidirectionalIterator<TValue> 类

定义

定义一个迭代器,该迭代器以反向访问容器中的元素。 可以向前(通过使用递减运算符)或向后(通过使用递增运算符)访问元素。 无法修改迭代器指向的元素。 无论是需要常量反向输入迭代器还是常量反向输出迭代器,均可以使用常量反向双向迭代器。

generic <typename TValue>
public ref class ConstReverseBidirectionalIterator : Microsoft::VisualC::StlClr::Generic::IBidirectionalIterator<TValue>
public class ConstReverseBidirectionalIterator<TValue> : Microsoft.VisualC.StlClr.Generic.IBidirectionalIterator<TValue>
type ConstReverseBidirectionalIterator<'Value> = class
    interface IBidirectionalIterator<'Value>
Public Class ConstReverseBidirectionalIterator(Of TValue)
Implements IBidirectionalIterator(Of TValue)

类型参数

TValue

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

继承
ConstReverseBidirectionalIterator<TValue>
实现

注解

有些方法(尤其是运算符)声明参数的类型,但不指定参数名称。 此类参数称为“未命名参数”。 在这些方法的文档中, A_0 占位符表示未命名的参数。

构造函数

ConstReverseBidirectionalIterator<TValue>()

分配并初始化新的 ConstReverseBidirectionalIterator<TValue> 对象。

ConstReverseBidirectionalIterator<TValue>(ConstReverseBidirectionalIterator<TValue>)

从现有 ConstReverseBidirectionalIterator<TValue> 对象分配并初始化新的 ConstReverseBidirectionalIterator<TValue> 对象。

ConstReverseBidirectionalIterator<TValue>(IBidirectionalIterator<TValue>)

从现有 ConstReverseBidirectionalIterator<TValue> 对象分配并初始化新的 IBidirectionalIterator<TValue> 对象。

ConstReverseBidirectionalIterator<TValue>(ReverseBidirectionalIterator<TValue>)

从现有 ConstReverseBidirectionalIterator<TValue> 对象分配并初始化新的 ReverseBidirectionalIterator<TValue> 对象。

方法

base()

获取 ConstReverseBidirectionalIterator<TValue> 对象的基础基迭代器。

Clone()

返回当前 ConstReverseBidirectionalIterator<TValue> 对象的副本。

container()

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

equal_to(ConstReverseBidirectionalIterator<TValue>)

确定给定 ConstReverseBidirectionalIterator<TValue> 对象是否与当前 ConstReverseBidirectionalIterator<TValue> 对象相同。

equal_to(IInputIterator<TValue>)

确定给定 IInputIterator<TValue> 对象是否与当前 ConstReverseBidirectionalIterator<TValue> 对象相同。

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
get_bias()

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

get_cref()

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

get_node()

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

get_ref()

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

GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
next()

将迭代器递减到基础容器中的上一个位置,如果已完全遍历此容器,则递减到容器开始位置前面的第一个位置。

prev()

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

ToString()

返回表示当前对象的字符串。

(继承自 Object)
valid()

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

运算符

Assign(ConstReverseBidirectionalIterator<TValue>)

将给定 ConstReverseBidirectionalIterator<TValue> 对象分配给当前对象。

Assign(ReverseBidirectionalIterator<TValue>)

将给定 ReverseBidirectionalIterator<TValue> 对象分配给当前对象。

Decrement(ConstReverseBidirectionalIterator<TValue>)

迭代器递减一个元素。 递减反向迭代器与递增正则迭代器相同。 这是减量运算符的前缀版本。

Decrement(Int32, Int32)

迭代器递减一个元素。 递减反向迭代器与递增正则迭代器相同。 这是减量运算符的后缀版本。

Equality(ConstReverseBidirectionalIterator<TValue>)

确定给定 ConstReverseBidirectionalIterator<TValue> 对象是否与当前 ConstReverseBidirectionalIterator<TValue> 对象相同。

Equality(IInputIterator<TValue>)

确定给定 IInputIterator<TValue> 对象是否与当前 ConstReverseBidirectionalIterator<TValue> 对象相同。

Implicit

ConstReverseBidirectionalIterator<TValue> 转换为 IBidirectionalIterator<TValue>

Increment(ConstReverseBidirectionalIterator<TValue>)

迭代器递增一个元素。 递增反向迭代器与递减正则迭代器相同。 这是递增运算符的前缀版本。

Increment(Int32, Int32)

迭代器递增一个元素。 递增反向迭代器与递减正则迭代器相同。 这是增量运算符的后缀版本。

Inequality(ConstReverseBidirectionalIterator<TValue>)

确定给定的 ConstReverseBidirectionalIterator<TValue> 对象是否与当前的 ConstReverseBidirectionalIterator<TValue> 对象不同。

Inequality(IInputIterator<TValue>)

确定给定的 IInputIterator<TValue> 对象是否与当前的 ConstReverseBidirectionalIterator<TValue> 对象不同。

MemberSelection(ConstReverseBidirectionalIterator<TValue>)

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

PointerDereference(ConstReverseBidirectionalIterator<TValue>)

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

适用于