C++ printf with std::string

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人点赞

 

C plus plus

 

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值