C++ 字符串 at()函数
该函数用于访问字符串中的单个字符。
语法
假设有一个字符串str。要找到特定字符的位置,其语法如下:
str.at(pos);
参数
pos: 它定义了字符在字符串中的位置。
返回值
它返回在该位置指定的字符。
示例1
#include<iostream>
using namespace std;
int main()
{
string str = "Welcome to javatpoint tutorial";
cout<<"String contains :";
for(int i=0; i<str.length(); i++)
{
cout<< str.at(i);
}
cout<<'\n';
cout<<"String is shown again";
for(int j=0 ; j<str.length(); j++)
{
cout<< str[j];
}
return 0;
}
输出:
String contains Welcome to javatpoint tutorial
示例表明,我们可以使用成员函数at()或下标运算符[ ]来访问字符。