标签: c++
朋友们,我想知道如何将int值转换为字符串值。
答案 0 :(得分:3)
使用std::to_string:
std::to_string
int i = 42; std::string s = std::to_string(i);