只看容易忘掉的
1 a.substr()
string a="abcdefghi"; cout << a<<endl; cout<<a.substr(4,5);//4代表a[4],5代表后面5个字符efghi
2 a.c_str() 众所周知,printf打印不了string类型 所以方法为 string a=”abcdef”; printf(“%s”,a.c_str());//打印abcdef