此函数用于访问单个字符。
用法
考虑一个字符串 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() 或下标运算符 [ ] 来访问字符。
相关用法
- C++ String append()用法及代码示例
- C++ String swap()用法及代码示例
- C++ String back()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ String begin()用法及代码示例
- C++ String size()用法及代码示例
- C++ String resize()用法及代码示例
- C++ String Find()用法及代码示例
- C++ String crend()用法及代码示例
- C++ String compare()用法及代码示例
- C++ String empty()用法及代码示例
- C++ String replace()用法及代码示例
- C++ String insert()用法及代码示例
- C++ String clear()用法及代码示例
- C++ String Data()用法及代码示例
- C++ String cend()用法及代码示例
- C++ String pop_back()用法及代码示例
- C++ String find_first_not_of()用法及代码示例
- C++ String find_last_of()用法及代码示例
- C++ String erase()用法及代码示例
注:本文由纯净天空筛选整理自 C++ String at()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。