ConstContainerRandomAccessIterator<TValue>.Addition 運算子

定義

按照指定的項目數目遞增 Iterator。

多載

Addition(ConstContainerRandomAccessIterator<TValue>, Int32)

按照指定的項目數目遞增 Iterator。 整數參數指定於加法運算子的右側。

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

按照指定的項目數目遞增 Iterator。 整數參數指定於加法運算子的左側。

Addition(ConstContainerRandomAccessIterator<TValue>, Int32)

按照指定的項目數目遞增 Iterator。 整數參數指定於加法運算子的右側。

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>)

按照指定的項目數目遞增 Iterator。 整數參數指定於加法運算子的左側。

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>

要遞增的 Iterator。

適用於