C++ String 库 - cend
描述
它返回一个指向字符串末尾字符的 const_iterator。
声明
以下是 std::string::cend 的声明。
const_iterator cend() const noexcept;
C++11
const_iterator cend() const noexcept;
参数
none
返回值
它将一个 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