码迷,mamicode.com
首页 > 编程语言 > 详细

C++ Daily 《4》----一个简单的 int to string 的方法

时间:2014-07-22 23:04:54      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:style   blog   os   io   2014   re   

经常会在项目中用到 int to string, 之前一般用C语言的 sprintf,

发现C++ 中的 ostringstream 可以轻松完成这个任务。


#include <iostream>
#include <string>
#include <sstream>
using namespace std;

int main(void)
{
  ostringstream num;
  num << 123;
  string str = num.str();
  cout << str << endl;
  return 0;
}


C++ Daily 《4》----一个简单的 int to string 的方法,码迷,mamicode.com

C++ Daily 《4》----一个简单的 int to string 的方法

标签:style   blog   os   io   2014   re   

原文地址:http://blog.csdn.net/shoulinjun/article/details/24723609

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!