📅  最后修改于: 2020-10-21 02:17:08             🧑  作者: Mango
此函数用于获取字符中位置pos处的字符串。
考虑在位置“ pos”处的字符串“ str”和字符“ ch”。语法为:
char ch = str.operator[ ](pos);
pos:定义要检索的字符的位置。
此函数返回在位置pos处指定的字符。
让我们看一个简单的例子。
#include
using namespace std;
int main()
{
string str="C programs";
for(int i=0;i
输出:
C programs
让我们来看另一个简单的例子。
#include
using namespace std;
int main()
{
string s="54321";
for(int i=0;i
输出:
54321