C++ String 库 - operator[]
描述
它返回对字符串中位置 pos 的字符的引用。
声明
以下是 std::string::operator[] 的声明
char& operator[] (size_t pos);
C++11
const char& operator[] (size_t pos) const;
参数
pos − 具有字符串中字符位置的值。
返回值
它返回对字符串中位置 pos 的字符的引用。
异常
如果抛出异常,则字符串没有变化。
示例
在下面的 std::string::operator[] 示例中。
#include <iostream> #include <string> int main () { std::string str ("Sairamkrishna Mammahe"); for (int i=0; i<str.length(); ++i) { std::cout << str[i]; } return 0; }
Sairamkrishna Mammahe