public member function
<string>
iterator begin();const_iterator begin() const;
iterator begin() noexcept;const_iterator begin() const noexcept;
Return iterator to beginning
Returns an iterator pointing to the first character of the string.
返回值
An iterator to the beginning of the string.
如果 basic_string 对象是常量限定的,则该函数返回const_iterator。否则,它返回一个iterator.
成员类型iterator和const_iterator是 随机访问迭代器 类型(分别指向字符和常量字符)。
示例
1 2 3 4 5 6 7 8 9 10 11 12 13
|
// string::begin/end
#include <iostream>
#include <string>
int main ()
{
std::string str ("Test string");
for ( std::string::iterator it=str.begin(); it!=str.end(); ++it)
std::cout << *it;
std::cout << '\n';
return 0;
}
|
输出
迭代器有效性
通常,没有变化。
在某些实现中,非 const 版本可能会使对象构造或修改后首次访问字符串字符的所有迭代器、指针和引用都无效。
数据竞争
访问该对象,并且在某些实现中,非 const 版本会在对象构造或修改后首次访问字符串字符时修改它。
返回的迭代器可用于访问或修改字符。
数据竞争
访问该对象(const 版本和非 const 版本都不会修改它)。
返回的迭代器可用于访问或修改字符。并发访问或修改不同的字符是安全的。
异常安全
无异常保证:此成员函数从不抛出异常。
还可以保证返回的迭代器的复制构造或赋值永远不会引发异常。