📜  C++ string.operator[]()函数

📅  最后修改于: 2020-10-21 02:17:08             🧑  作者: Mango

C++ string.operator[]()

此函数用于获取字符中位置pos处的字符串。

句法

考虑在位置“ pos”处的字符串“ str”和字符“ ch”。语法为:

char ch = str.operator[ ](pos);

参数

pos:定义要检索的字符的位置。

返回值

此函数返回在位置pos处指定的字符。

例子1

让我们看一个简单的例子。

#include
using namespace std;
int main()
{
    string str="C programs";
    for(int i=0;i

输出:

C programs

例子2

让我们来看另一个简单的例子。

#include
using namespace std;
int main()
{
    string s="54321";
    for(int i=0;i

输出:

54321