如何在C ++流中格式化输出以打印固定宽度的左对齐表?像
这样的东西printf("%-14.3f%-14.3f\n", 12345.12345, 12345.12345);
poducing
12345.123 12345.123
答案 0 :(得分:17)
包含标准标题<iomanip>
并发疯。具体来说,setw
操纵器设置输出宽度。 setfill
设置填充字符。
答案 1 :(得分:15)
std::cout << std::setiosflags(std::ios::fixed)
<< std::setprecision(3)
<< std::setw(18)
<< std::left
<< 12345.123;
答案 2 :(得分:11)
您可能还会考虑以下其中一项提供的更友好的功能:
从记忆中写作,但应该是这样的:
// Dumb streams:
printf("%-14.3f%-14.3f\n", 12345.12345, 12345.12345);
// For IOStreams you've got example in the other answers
// Boost Format supports various flavours of formatting, for example:
std::cout << boost::format("%-14.3f%-14.3f\n") % a % b;
std::cout << boost::format("%1$-14.3f%2$-14.3f\n") % a % b;
// To gain somewhat on the performance you can store the formatters:
const boost::format foo("%1$-14.3f%2$-14.3f\n");
std::cout << boost::format(foo) % a % b;
// For the Loki::Printf it's also similar:
Loki::Printf("%-14.3f%-14.3f\n")(a)(b);
// And finally FastFormat.Format (don't know the syntax for decimal places)
fastformat::fmtln(std::cout, "{0,14,,<}{1,14,,>}", a, b);
此外,如果您打算坚持使用这些格式库中的任何一个,请在可表达性,可移植性(以及其他库依赖性),效率,国际化支持,类型安全等方面彻底检查它们的局限性。
答案 3 :(得分:5)