📅  最后修改于: 2020-10-21 01:50:43             🧑  作者: Mango
此函数用于访问单个字符。
考虑一个字符串str。为了找到特定字符的位置,其语法为
str.at(pos);
pos:它定义字符在字符串的位置。
它返回在该位置指定的字符。
#include
using namespace std;
int main()
{
string str = "Welcome to javatpoint tutorial";
cout<<"String contains :";
for(int i=0; i
输出:
String contains Welcome to javatpoint tutorial
示例显示,我们可以使用成员函数at()或下标运算符[]访问字符。