C++ 中的 string at() 函数\n


在本节中,我们将了解 C++ 中的 at() 函数。at() 函数用于访问指定位置的字符。

在此程序中,我们将使用 at() 遍历每个字符,并将它们打印到不同的行中。

示例代码

 在线演示

#include<iostream>
using namespace std;

main() {
   string my_str = "Hello World";

   for(int i = 0; i<my_str.length(); i++) {
      cout << my_str.at(i) << endl; //get character at position i
   }
}

输出

H
e
l
l
o

W
o
r
l
d

更新于: 30-Jul-2019

96 次浏览

开启您的 职业

完成课程,获得认证

开始
广告