-2

友よ、int 値を文字列値に変換する方法を知りたいです。

4

1 に答える 1

3

使用std::to_string:

int i = 42;
std::string s = std::to_string(i);
于 2013-09-28T12:33:21.833 に答える