IHash<TKey,TValue>.rend 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定反向受控序列的末尾。
public:
void ^ rend(Microsoft::VisualC::StlClr::Generic::ReverseBidirectionalIterator<TValue> ^ % unnamedParam1);
public void rend (ref Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<TValue> unnamedParam1);
abstract member rend : ReverseBidirectionalIterator -> unit
Public Function rend (ByRef unnamedParam1 As ReverseBidirectionalIterator(Of TValue)) As Void
参数
- unnamedParam1
- ReverseBidirectionalIterator<TValue>
一个反向迭代器,刚好指向受控序列的开头之外。 因此,它指定反向序列的 end
。 用于获取一个迭代器,该迭代器指定反向顺序的受控序列的 current
末尾。 如果受控序列的长度发生更改,该迭代器的状态也会更改。
注解
有关详细信息,请参阅 hash_map::rend (STL/CLR) 、 hash_multimap::rend (STL/CLR) 、 hash_set::rend (STL/CLR) 和 hash_multiset::rend (STL/CLR) 。