ConstReverseBidirectionalIterator<TValue>.Increment 运算符
定义
迭代器递增一个元素。Increments the iterator by one element. 递增反向迭代器与递减正则迭代器相同。Incrementing a reverse iterator is the same as decrementing a regular iterator.
重载
| Increment(ConstReverseBidirectionalIterator<TValue>) |
迭代器递增一个元素。Increments the iterator by one element. 递增反向迭代器与递减正则迭代器相同。Incrementing a reverse iterator is the same as decrementing a regular iterator. 这是递增运算符的前缀版本。This is the prefix version of the increment operator. |
| Increment(Int32, Int32) |
迭代器递增一个元素。Increments the iterator by one element. 递增反向迭代器与递减正则迭代器相同。Incrementing a reverse iterator is the same as decrementing a regular iterator. 这是增量运算符的后缀版本。This is the postfix version of the increment operator. |
Increment(ConstReverseBidirectionalIterator<TValue>)
迭代器递增一个元素。Increments the iterator by one element. 递增反向迭代器与递减正则迭代器相同。Incrementing a reverse iterator is the same as decrementing a regular iterator. 这是递增运算符的前缀版本。This is the prefix version of the increment operator.
public:
void ^ operator ++(Microsoft::VisualC::StlClr::Generic::ConstReverseBidirectionalIterator<TValue> ^ % );
public void operator ++ (ref Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<TValue> );
member this.op_Increment : ConstReverseBidirectionalIterator -> unit
Public op_Increment (ByRef As ConstReverseBidirectionalIterator(Of TValue)) As Void
参数
适用于
Increment(Int32, Int32)
迭代器递增一个元素。Increments the iterator by one element. 递增反向迭代器与递减正则迭代器相同。Incrementing a reverse iterator is the same as decrementing a regular iterator. 这是增量运算符的后缀版本。This is the postfix version of the increment operator.
public:
void ^ operator ++(Microsoft::VisualC::StlClr::Generic::ConstReverseBidirectionalIterator<TValue> ^ % , int );
public void operator ++ (ref Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<TValue> , int );
member this.op_Increment : * int -> unit
Public op_Increment (ByRef As ConstReverseBidirectionalIterator(Of TValue), As Integer) As Void
参数
- A_0
- Int32
指示这是递增运算符的后缀版本。Indicates that this is the postfix version of the increment operator.