我正在寻找一种打印大数字的好方法,因此它们更具可读性
即 6000000
应该是
6.000.000
OR
6,000,000,具体取决于区域设置
更新
我在我的代码上尝试了以下内容(在IOS上)
char* localeSet = std::setlocale(LC_ALL, "en_US");
cout << "LOCALE AFTER :" << std::locale("").name() << endl;
localeSet始终为NILL
我总是得到“LCOALE AFTER:C”
答案 0 :(得分:0)
在std C ++中是这样的:
template < class T >
std::string Format( T number )
{
std::stringstream ss;
ss << number;
const std::string num = ss.str();
std::string result;
const size_t size = num.size();
for ( size_t i = 0; i < size; ++i )
{
if ( i % 3 == 0 && i != 0 )
result = '.' + result;
result = ( num[ size - 1 - i ] + result );
}
return result;
}
...
long x = 1234567;
std::cout << Format( x ) << std::endl;
...