Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1774370
  • 博文数量: 198
  • 博客积分: 4088
  • 博客等级: 上校
  • 技术积分: 2391
  • 用 户 组: 普通用户
  • 注册时间: 2011-05-15 16:29
个人简介

游戏开发,系统架构; 博客迁移到:http://www.jianshu.com/u/3ac0504b3b8c

文章分类

全部博文(198)

文章存档

2017年(1)

2016年(12)

2015年(1)

2014年(3)

2013年(13)

2012年(18)

2011年(150)

分类: C/C++

2011-05-31 13:14:12

C/C++ code
#include <iostream> 
#include <string> 
using namespace std;
int main() 
{
   int n = 65535
   char t[256]; 
   string s; 
   sprintf(t, "%d", n); 
   s = t; 
   cout << s << endl; 
   return 0
}
C/C++ code
//第二种方法
#include <iostream> 
#include <string>
#include <strstream>
using namespace std; 
int main() 
{
   int n = 65535;
   strstream ss; 
   string s; 
   ss << n; 
   ss >> s; 
   cout << s << endl; 
   return 0
}


但是strstream是老类了,标准建议别用,改成用sstream类

#include <strstream> 
strstream ss; 
换成 
 #include <sstream>
stringstream ss;

阅读(1207) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~