IVector<TValue>.insert 方法

定义

将元素添加到容器中的指定位置。

重载

insert(ContainerRandomAccessIterator<TValue>, IEnumerable)

将枚举器指定的序列插入到容器中。

insert(ContainerRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>, TValue)

将指定的值插入到容器中。

insert(ContainerRandomAccessIterator<TValue>, IInputIterator<TValue>, IInputIterator<TValue>)

将以 _First 开头并以 _Last 之前的元素结尾的序列插入到容器中。

insert(ContainerRandomAccessIterator<TValue>, Int32, TValue)

将指定的值插入到容器中。

注解

有关详细信息,请参阅 vector::insert (STL/CLR)

insert(ContainerRandomAccessIterator<TValue>, IEnumerable)

将枚举器指定的序列插入到容器中。

public:
 void insert(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Where_iter, System::Collections::IEnumerable ^ _Right);
public void insert (Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Where_iter, System.Collections.IEnumerable _Right);
abstract member insert : Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> * System.Collections.IEnumerable -> unit
Public Sub insert (_Where_iter As ContainerRandomAccessIterator(Of TValue), _Right As IEnumerable)

参数

_Where_iter
ContainerRandomAccessIterator<TValue>

容器中要在其前面进行插入的位置。

_Right
IEnumerable

要插入到容器中的枚举。

适用于

insert(ContainerRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>, TValue)

将指定的值插入到容器中。

public:
 void ^ insert(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ % unnamedParam1, Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Where, TValue _Val);
public void insert (ref Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> unnamedParam1, Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Where, TValue _Val);
abstract member insert : ContainerRandomAccessIterator * Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> * 'Value -> unit
Public Function insert (ByRef unnamedParam1 As ContainerRandomAccessIterator(Of TValue), _Where As ContainerRandomAccessIterator(Of TValue), _Val As TValue) As Void

参数

unnamedParam1
ContainerRandomAccessIterator<TValue>

指定新插入元素的迭代器。

_Where
ContainerRandomAccessIterator<TValue>

容器中要在其前面进行插入的位置。

_Val
TValue

要插入到容器中的元素的值。

适用于

insert(ContainerRandomAccessIterator<TValue>, IInputIterator<TValue>, IInputIterator<TValue>)

将以 _First 开头并以 _Last 之前的元素结尾的序列插入到容器中。

public:
 void insert(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Where, Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue> ^ _First, Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue> ^ _Last);
public void insert (Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Where, Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue> _First, Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue> _Last);
abstract member insert : Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> * Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> * Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> unit
Public Sub insert (_Where As ContainerRandomAccessIterator(Of TValue), _First As IInputIterator(Of TValue), _Last As IInputIterator(Of TValue))

参数

_Where
ContainerRandomAccessIterator<TValue>

容器中要在其前面进行插入的位置。

_First
IInputIterator<TValue>

要插入到容器中的范围的开始位置。

_Last
IInputIterator<TValue>

要插入到容器中的范围之外的第一个位置。

适用于

insert(ContainerRandomAccessIterator<TValue>, Int32, TValue)

将指定的值插入到容器中。

public:
 void insert(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Where, int _Count, TValue _Val);
public void insert (Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Where, int _Count, TValue _Val);
abstract member insert : Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> * int * 'Value -> unit
Public Sub insert (_Where As ContainerRandomAccessIterator(Of TValue), _Count As Integer, _Val As TValue)

参数

_Where
ContainerRandomAccessIterator<TValue>

容器中要在其前面进行插入的位置。

_Count
Int32

要插入到容器中的元素数。

_Val
TValue

要插入到容器中的元素的值。

注解

有关详细信息,请参阅 vector::insert (STL/CLR)

适用于