C++ printf with std::string
瞬身止水关注
2017.08.18 01:29:35字数 235阅读 2,106
在c++里面使用printf
输出std::string
字符串会出现一些问题,如下:
#include<bits/stdc++.h>
int main ()
{
std::string s ("This is an sentence.");
std::cout << s << std::endl;
printf("%s\n", s);
return 0;
}
output:
This is an sentence.
▒
printf
的结果是一个奇怪的字符,这是为什么呢?
这是因为printf
的"%s"
对应的是C-style string,不支持std::string
,也就是说printf
不是类型安全的(isn't type safe)。正确的做法是使用std::cout << s << std::endl;
。
而如果非要使用printf
,有一个不是很推荐的做法,使用std::string.c_str()
获得const char *
的字符串,然后再输出。
#include<bits/stdc++.h>
int main ()
{
std::string s ("This is an sentence.");
std::cout << s << std::endl;
printf("%s\n", s.c_str());
return 0;
}
output:
This is an sentence.
This is an sentence.
至于为什么这种方法是不推荐的,参见:
https://stackoverflow.com/questions/10865957/c-printf-with-stdstring
补充:
同理,输入字符串到
std::string
的时候,不能用scanf("%s", &s);
,而应该用std::cin >> s;
1人点赞