- 对于string自带的函数 c_str()返回的const char*类型,对于scanf函数不能使用,可以通过如下方法使用
string s;
scanf("%s",&*s.begin()) => s.begin() 返回的是一个const char* 常量指针,通过*对其取类容,再通过&地址符得到字符指针。
- 对于string类型的输出
string s;
printf("%s\n",s.c_str());
cout << s<<endl;
这里有个特别注意的事情,请看如下例子!
s = "hello\0world";
printf("%s\n",s.c_str()); 输出结果是hello
cout << s << endl; 输出结果是hello world。 因为string类元素中有记录该字符的长度,所以不是遇到末尾符就结束,这是和printf的区别