#include <iostream>
using namespace std;
void test01 ()
{
string s = "hello";
s.insert (1, "111");
cout << s << endl;
s.erase(1, 3);
cout << s << endl;
}
int main ()
{
test01();
return 0;
}
总结:
插入和删除的起始下标都是从0开始的