C++ apstring是可变的
你可以通过将[]操作符放在赋值语句的左边每次修改apstring中的一个字母。例如:
apstring greeting = "Hello, world!";
greeting[0] = 'J’;
cout << greeting << endl;
输出是Jello, world!。
你可以通过将[]操作符放在赋值语句的左边每次修改apstring中的一个字母。例如:
apstring greeting = "Hello, world!";
greeting[0] = 'J’;
cout << greeting << endl;
输出是Jello, world!。