C++ 字符串库 - crend



描述

它返回 const_reverse_iterator 到反向结束。

声明

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

const_reverse_iterator crend() const noexcept;

C++11

const_reverse_iterator crend() const noexcept;

参数

返回值

它返回一个指向字符串反向末端的 const_reverse_iterator。

异常

从不抛出任何异常。

示例

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

#include <iostream>
#include <string>

int main () {
   std::string str ("Tutorials Point");
   for (auto rit=str.crbegin(); rit!=str.crend(); ++rit)
      std::cout << *rit;
   std::cout << '\n';

   return 0;
}

示例输出应如下所示:

tnioP slairotuT
string.htm
广告