提问人:lovespeed 提问时间:6/27/2012 最后编辑:chema989lovespeed 更新时间:6/29/2016 访问量:68698
在 C++ 中格式化输出
Formatting output in C++
问:
在 C++ 代码中,我有一个双变量矩阵,我打印出来。但是,由于它们都具有不同的位数,因此输出格式将被销毁。一种解决方案是这样做,但我希望不同的列具有不同的精度。此外,由于在某些情况下存在负值,因此符号的存在也会导致问题。如何解决这个问题并产生格式正确的输出?cout.precision(5)
-
答:
9赞
John Dibling
6/27/2012
#1
使用机械手。
从这里的示例:
#include <iostream>
#include <iomanip>
#include <locale>
int main()
{
std::cout.imbue(std::locale("en_US.utf8"));
std::cout << "Left fill:\n" << std::left << std::setfill('*')
<< std::setw(12) << -1.23 << '\n'
<< std::setw(12) << std::hex << std::showbase << 42 << '\n'
<< std::setw(12) << std::put_money(123, true) << "\n\n";
std::cout << "Internal fill:\n" << std::internal
<< std::setw(12) << -1.23 << '\n'
<< std::setw(12) << 42 << '\n'
<< std::setw(12) << std::put_money(123, true) << "\n\n";
std::cout << "Right fill:\n" << std::right
<< std::setw(12) << -1.23 << '\n'
<< std::setw(12) << 42 << '\n'
<< std::setw(12) << std::put_money(123, true) << '\n';
}
输出:
Left fill:
-1.23*******
0x2a********
USD *1.23***
Internal fill:
-*******1.23
0x********2a
USD ****1.23
Right fill:
*******-1.23
********0x2a
***USD *1.23
3赞
jrok
6/27/2012
#2
看看流操纵器,尤其是 和 .std::setw
std::setfill
float f = 3.1415926535;
std::cout << std::setprecision(5) // precision of floating point output
<< std::setfill(' ') // character used to fill the column
<< std::setw(20) // width of column
<< f << '\n'; // your number
0赞
Premkumar U
6/27/2012
#3
尝试使用 setw 操纵器。详情请参阅 http://www.cplusplus.com/reference/iostream/manipulators/setw/
0赞
Benjamin Lindley
6/27/2012
#4
有一种使用 I/O 操纵器的方法,但我发现它很笨拙。我会写一个这样的函数:
template<typename T>
std::string RightAligned(int size, const T & val)
{
std::string x = boost::lexical_cast<std::string>(val);
if (x.size() < size)
x = std::string(size - x.size(), ' ') + x;
return x;
}
22赞
stanri
6/27/2012
#5
在我的头顶上,你可以使用 setw(int) 来指定输出的宽度。
喜欢这个:
std::cout << std::setw(5) << 0.2 << std::setw(10) << 123456 << std::endl;
std::cout << std::setw(5) << 0.12 << std::setw(10) << 123456789 << std::endl;
给出这个:
0.2 123456
0.12 123456789
评论
0赞
solti
12/24/2016
仅供参考:在执行 std::setw(x) 时,请确保 x 大于您的十进制精度。
0赞
Mikhail_Sam
10/10/2020
这是正确的答案,但如果没有额外的库,它无法在 Ubuntu (gcc) 上运行: .在这里查看: stackoverflow.com/a/18983787/4960953#include <iomanip>
16赞
James Kanze
6/27/2012
#6
正如其他人所说,关键是使用操纵器。他们什么
忽略了说的是,你通常使用你写的操纵器
你自己。一个操纵器(对应于
Fortran 相当简单:FFmt
F
class FFmt
{
int myWidth;
int myPrecision;
public:
FFmt( int width, int precision )
: myWidth( width )
, myPrecision( precision )
{
}
friend std::ostream&
operator<<( std::ostream& dest, FFmt const& fmt )
{
dest.setf( std::ios_base::fixed, std::ios_base::formatfield );
dest.precision( myPrecision );
dest.width( myWidth );
return dest;
}
};
这样,您可以为每列定义一个变量,例如:
FFmt col1( 8, 2 );
FFmt col2( 6, 3 );
// ...
并写下:
std::cout << col1 << value1
<< ' ' << col2 << value2...
一般来说,除了最简单的程序外,您可能不应该
使用标准机械手,而是基于
您的申请;例如: 如果真是这样的话
你处理的事情。这样,代码中就很清楚了什么
您正在格式化,如果客户端突然要求再输入一位数字
压力,你确切地知道在哪里做出改变。temperature
pressure
评论
0赞
user1603472
6/18/2014
请记住,您需要包含 <iomanip> 才能使其找到 setw ()
1赞
James Kanze
6/19/2014
@user1603472 是的,但我的代码不使用 .std::setw
0赞
user1603472
6/19/2014
对不起,我的错,我点击了错误的地方,是一个快速的评论
评论