C++ 字符串库 - cbegin


描述

它将 const_iterator 返回到开头。

宣言

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

const_iterator cbegin() const noexcept;

C++11

const_iterator cbegin() const noexcept;

参数

没有任何

返回值

它返回一个 const_iterator 到字符串的开头。

例外情况

永远不要抛出任何异常。

例子

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

#include <iostream>
#include <string>

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

   return 0;
}

示例输出应该是这样的 -

Tutorials Point 
字符串.htm