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

C++ 通过ostringstream 实现任意类型转string

时间:2017-10-20 11:53:56      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:namespace   main   iostream   string   end   ret   turn   style   pre   

#include <iostream>  
#include <string>  
using namespace std;  
int main()  
{  
 int a = 56;  
 double b = 65.123;  
 string str = "";  
 //头文件是sstream  
 std::ostringstream oss;  
 oss << a << "---" << b;  
 str = oss.str();  
 cout << str << endl;  
 return 0;  
}  

输出是56---65.123

 

C++ 通过ostringstream 实现任意类型转string

标签:namespace   main   iostream   string   end   ret   turn   style   pre   

原文地址:http://www.cnblogs.com/simplepaul/p/7698410.html

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