在本节中,我们将看到C ++中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