simplepaul
#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

 

分类:

技术点:

相关文章: