将 int 转换为字符串的最短方法是什么,最好是可内联的?使用 stl 和 boost 的答案将受到欢迎。
您可以在 C++11中使用 std::to_string
int i = 3; std::string str = std::to_string(i);