美文网首页
C++ printf with std::string

C++ printf with std::string

作者: 瞬身止水 | 来源:发表于2017-08-18 01:29 被阅读0次

在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;

相关文章

网友评论

      本文标题:C++ printf with std::string

      本文链接:https://www.haomeiwen.com/subject/qwdorxtx.html