摘要:
使用stringstream类:(强烈推荐) #include <iostream> #include <sstream> using namespace std; int main() { int i = 10; stringstream strstr; strstr << i; string str(strstr.str()); cout << "str = " << str << std::endl; } 阅读全文
posted @ 2011-05-30 21:11
飞夺泸定桥
阅读(575)
评论(0)
推荐(0)