IDeque<TValue>.end(ContainerRandomAccessIterator<TValue>) 方法

定义

指定受控序列的末尾。

public:
 void ^ end(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ % unnamedParam1);
public void end (ref Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> unnamedParam1);
abstract member end : ContainerRandomAccessIterator -> unit
Public Function end (ByRef unnamedParam1 As ContainerRandomAccessIterator(Of TValue)) As Void

参数

unnamedParam1
ContainerRandomAccessIterator<TValue>

一个随机访问迭代器,指向紧靠受控序列的末尾之外的位置。 用于获取一个迭代器,该迭代器指定受控序列的 current 末尾,但如果受控序列的长度发生更改,则该迭代器的状态也会发生更改。

注解

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

适用于