std::basic_string::begin, std::basic_string::cbegin

来自cppreference.com
< cpp‎ | string‎ | basic string

 
 
 
std::basic_string
 
iterator begin();
const_iterator begin() const;
const_iterator cbegin() const;
(C++11 起)
返回一个迭代器的第一个字符的字符串.
原文:
Returns an iterator to the first character of the string.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

目录

[编辑] 参数

(无)
原文:
(none)
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 返回值

迭代器的第一个字符
原文:
iterator to the first character
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 复杂度

常数
原文:
Constant
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 另请参阅


(C++11)
返回指向末尾的迭代器
(公开成员函数) [编辑]