System::Collections::Generic::SortedList::rbegin 方法

SortedList::rbegin() const method

获取 const 限定集合的最后一个元素的反向迭代器(反向的第一个元素)。

const_reverse_iterator System::Collections::Generic::SortedList<TKey, TValue>::rbegin() const noexcept

ReturnValue

一个指向 const 限定映射中最后一个元素(反向的第一个)的反向迭代器。

另见

SortedList::rbegin() method

获取集合的最后一个元素的反向迭代器(反向的第一个元素)。

reverse_iterator System::Collections::Generic::SortedList<TKey, TValue>::rbegin() noexcept

ReturnValue

一个指向映射中最后一个元素(反向的第一个)的反向迭代器。

另见