标签:
string s;
scanf("%s",&*s.begin()) => s.begin() 返回的是一个const char* 常量指针,通过*对其取类容,再通过&地址符得到字符指针。
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的区别
标签:
原文地址:http://www.cnblogs.com/ChenAlong/p/5343372.html