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

时间:2014-07-22 23:04:54   收藏:0   阅读:283

经常会在项目中用到 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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!