摘要: 关于stringstream的用法总结 将整形转化成字符串 #include <iostream> #include <sstream> using namespace std; string i2s(int i, int len = 0) { stringstream ss; ss.width(l 阅读全文
posted @ 2020-06-02 21:16 笑着的程序员 阅读(70) 评论(0) 推荐(0)