C++ 字符串库 - 在


描述

它返回对字符串中位置 pos 处的字符的引用。

宣言

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

char& at (size_t pos);

C++11

const char& at (size_t pos) const;

参数

pos - 字符串中字符位置的值。

返回值

它返回对字符串中位置 pos 处的字符的引用。

例外情况

如果抛出异常,则字符串不会发生任何变化。

例子

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

#include <iostream>
#include <string>

int main () {
   std::string str ("Sairamkrishna Mammahe");
   for (unsigned i=0; i<str.length(); ++i) {
      std::cout << str.at(i);
   }
   return 0;
}
Sairamkrishna Mammahe 
字符串.htm