System::Collections::Specialized::StringCollection::rbegin 方法

StringCollection::rbegin() const method

返回指向反转容器中第一个元素的逆向迭代器。它对应于未反转容器的最后一个元素。如果容器为空,返回的迭代器等于 rend()

const_reverse_iterator System::Collections::Specialized::StringCollection::rbegin() const noexcept

ReturnValue

一个指向 const 限定容器中最后一个元素的迭代器。

另见

StringCollection::rbegin() method

返回指向反转容器中第一个元素的逆向迭代器。它对应于未反转容器的最后一个元素。如果容器为空,返回的迭代器等于 rend()

reverse_iterator System::Collections::Specialized::StringCollection::rbegin() noexcept

ReturnValue

一个指向容器中最后一个元素的迭代器。

另见