C++ 字符串库 - 运算符[]


描述

它返回对字符串中位置 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 
字符串.htm