📜  如何在 C++ 代码示例中用逗号格式化大数字

📅  最后修改于: 2022-03-11 14:44:51.661000             🧑  作者: Mango

代码示例1
#include 
#include 

template
std::string FormatWithCommas(T value)
{
    std::stringstream ss;
    ss.imbue(std::locale(""));
    ss << std::fixed << value;
    return ss.str();
}