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

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

另见