System::Collections::Generic::LinkedList::rbegin 方法

LinkedList::rbegin() const method

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

const_reverse_iterator System::Collections::Generic::LinkedList<T>::rbegin() const noexcept

ReturnValue

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

另见

LinkedList::rbegin() method

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

reverse_iterator System::Collections::Generic::LinkedList<T>::rbegin() noexcept

ReturnValue

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

另见