C++ 字符串库 - rend



描述

它返回一个反向迭代器,指向反向结尾。

声明

以下是 std::string::rend 的声明。

reverse_iterator rend();
const_reverse_iterator rend() const;

C++11

reverse_iterator rend() noexcept;
const_reverse_iterator rend() const noexcept;

参数

返回值

它返回一个反向迭代器,指向字符串的反向结尾。

异常

从不抛出任何异常。

示例

以下为 std::string::rend 的示例。

#include <iostream>
#include <string>

int main () {
   std::string str ("Tutorials Point...");
   for (std::string::reverse_iterator rit=str.rbegin(); rit!=str.rend(); ++rit)
      std::cout << *rit;
   return 0;
}

示例输出应如下所示:

...tnioP slairotuT 
string.htm
广告