當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ String 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() 或下標運算符 [ ] 來訪問字符。






相關用法


注:本文由純淨天空篩選整理自 C++ String at()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。