您的位置:首页 > 其它

printf和cout 数字格式化输出对比

2017-01-11 09:26 330 查看
#include <iostream>
#include <iomanip>

int main()
{
// setfill(), setw()只生效一次
std::cout << std::setfill('0') << std::setw(5) << 5 << ", " << 10 << ", " << 11 << '\n';    // 00005, 10, 11
printf("%05d, %d, %d\n", 5, 10, 11);                                                        // 00005, 10, 11
std::cout << '\n';

// setprecision(), std::fiexed均会持久生效
std::cout << std::setprecision(9) << 3.14159 << "," << 4.14159 << '\n';                     // 3.14159,4.14159
printf("%.09f\n", 3.14159);                                                                 // 3.141590000
printf("%015.09f\n", 3.14159);                                                              // 00003.141590000
std::cout << '\n';

std::cout << std::fixed << std::setprecision(9) << 3.14159 << ", " << 4.14159 << '\n';      // 3.141590000, 4.141590000
std::cout << 3.14159 << ", " << 4.14159 << '\n';                                            // 3.141590000, 4.141590000
std::cout << '\n';

std::cout << 3.14159 << ", " << 4.14159 << '\n';                                            // 3.141590000, 4.141590000

return 0;
}

// 总结: 1. 对比可以看出, 想要格式化输出数字, C++ cout难用、学习成本高、代码难看, 没有C的printf好用
//       2. 可以选择boost::format, 基本上具备了printf的优点, 缺点是: a. 不是标准库 b. 任然没有C#中的string.Format()好用
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  printf cout