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
string.htm
广告