System::Collections::Generic::List::rbegin 方法

List::rbegin() const method

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

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

ReturnValue

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

另见

List::rbegin() method

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

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

ReturnValue

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

另见