ConstContainerRandomAccessIterator<TValue>.Addition 操作员

定义

按给定数量的元素递增迭代器。

重载

名称 说明
Addition(ConstContainerRandomAccessIterator<TValue>, Int32)

按给定数量的元素递增迭代器。 整数参数在加法运算符的右侧指定。

Addition(ConstContainerRandomAccessIterator<TValue>, Int32, ConstContainerRandomAccessIterator<TValue>)

按给定数量的元素递增迭代器。 整数参数在加法运算符的左侧指定。

Addition(ConstContainerRandomAccessIterator<TValue>, Int32)

按给定数量的元素递增迭代器。 整数参数在加法运算符的右侧指定。

public:
 void ^ operator +(Microsoft::VisualC::StlClr::Generic::ConstContainerRandomAccessIterator<TValue> ^ % unnamedParam1, int _Right);
public void operator +(ref Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue> unnamedParam1, int _Right);
member this.( + ) : ConstContainerRandomAccessIterator * int -> unit
Public Operator + (ByRef unnamedParam1 As ConstContainerRandomAccessIterator(Of TValue), _Right As Integer) As Void

参数

unnamedParam1
ConstContainerRandomAccessIterator<TValue>

当前迭代器。

_Right
Int32

要递增的元素数。

适用于

Addition(ConstContainerRandomAccessIterator<TValue>, Int32, ConstContainerRandomAccessIterator<TValue>)

按给定数量的元素递增迭代器。 整数参数在加法运算符的左侧指定。

public:
 static void ^ operator +(Microsoft::VisualC::StlClr::Generic::ConstContainerRandomAccessIterator<TValue> ^ % unnamedParam1, int _Left, Microsoft::VisualC::StlClr::Generic::ConstContainerRandomAccessIterator<TValue> ^ _Right);
public static void operator +(ref Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue> unnamedParam1, int _Left, Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue> _Right);
static member ( + ) : ConstContainerRandomAccessIterator * int * Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value> -> unit
Public Shared Operator + (ByRef unnamedParam1 As ConstContainerRandomAccessIterator(Of TValue), _Left As Integer, _Right As ConstContainerRandomAccessIterator(Of TValue)) As Void

参数

unnamedParam1
ConstContainerRandomAccessIterator<TValue>

运算符要对其执行操作的迭代器。

_Left
Int32

要递增的元素数。

_Right
ConstContainerRandomAccessIterator<TValue>

要递增的迭代器。

适用于