会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
飞夺泸定桥
我心飞扬
博客园
::
首页
::
博问
::
闪存
::
新随笔
::
联系
::
订阅
::
管理
::
公告
2011年5月30日
C++ 整数转换为字符串
摘要: 使用stringstream类:(强烈推荐) #include <iostream> #include <sstream> using namespace std; int main() { int i = 10; stringstream strstr; strstr << i; string str(strstr.str()); cout << "str = " << str << std::endl; }
阅读全文
posted @ 2011-05-30 21:11 飞夺泸定桥
阅读(567)
评论(0)
推荐(0)
编辑