sprintf(pcBuffer, "%d", 11); 是将数字转换为字符串的简便方法。
sprintf(pcBuffer, "%d", 11);
更现代的 std::format("1+2={} and 4+5={}", 3, 9) 会将其格式化的字符串输出为 std::string 对象。
std::format("1+2={} and 4+5={}", 3, 9)
std::string
有关从数字转换为字符串的更多信息(包括交互式示例)