将int转换为std :: string

时间:2010-08-02 11:29:15

标签: c++

  

可能重复:
  int to std::string?

如何将int转换为std :: string?

1 个答案:

答案 0 :(得分:15)

你可以使用stringstream;从here偷走了这个:

#include <iostream>
#include <sstream>

int main() {
  int number = 123;

  std::stringstream ss;
  ss << number;

  std::cout << ss.str() << endl;
}