数据类型转换 发表于 2018-04-13 | 分类于 C++ | | 阅读次数: 数据类型转换 问题描述如何将C++里的int类型转换为string类型 解决方案使用sstream库中的stringstream流 CODE123456789101112131415161718#include <iostream>#include <sstream>using namespace std;int main(){ int a=1000; string str; stringstream ss; ss<<a; ss>>str; cout<<a<<endl; cout<<str<<endl; return 0;} 欢迎您扫一扫上面的微信公众号,订阅我的博客! Donate comment here 打赏 微信支付 支付宝