C++ 字符串库 - cend


描述

它返回一个指向字符串末尾字符的 const_iterator。

宣言

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

const_iterator cend() const noexcept;

C++11

const_iterator cend() const noexcept;

参数

没有任何

返回值

它返回一个 const_iterator 到字符串的末尾。

例外情况

永远不要抛出任何异常。

例子

在下面的 std::string::cend 示例中。

#include <iostream>
#include <string>

int main () {
   std::string str ("tutorialspoint india PVT Ltd");
   for (auto it=str.cbegin(); it!=str.cend(); ++it)
      std::cout << *it;
   std::cout << '\n';

   return 0;
}

示例输出应该是这样的 -

tutorialspoint india PVT Ltd
字符串.htm