c++ int convert to std::string 转换成std::string
摘要:
#include #include #include std::string int2str(int &i) { std::string s; std::stringstream ss(s); ss << i; return ss.str();} 阅读全文
posted @ 2011-12-20 09:42 海南一哥 阅读(191) 评论(0) 推荐(0) 编辑