我正在尝试通过设置不同字段的宽度来在C ++上创建一个格式整齐的表。我可以使用setw(n),做类似
的事情cout << setw(10) << x << setw(10) << y << endl;
或更改ios_base :: width
cout.width (10);
cout << x;
cout.width (10);
cout << y << endl;
问题是,这两种选择都不允许我设置默认的最小宽度,每次我都要向流写入内容时我都要更改它。
有没有人知道我可以做到的方式而无需无数次重复同一个电话? 提前谢谢。
答案 0 :(得分:19)
您可以创建一个重载operator<<
并包含iostream
对象的对象,该对象将在内部自动调用setw
。例如:
class formatted_output
{
private:
int width;
ostream& stream_obj;
public:
formatted_output(ostream& obj, int w): width(w), stream_obj(obj) {}
template<typename T>
formatted_output& operator<<(const T& output)
{
stream_obj << setw(width) << output;
return *this;
}
formatted_output& operator<<(ostream& (*func)(ostream&))
{
func(stream_obj);
return *this;
}
};
您现在可以像下面这样称呼它:
formatted_output field_output(cout, 10);
field_output << x << y << endl;
答案 1 :(得分:1)
我知道这仍然是同一个电话,但我知道我从你的问题中得到的其他解决方案。
#define COUT std::cout.width(10);std::cout<<
int main()
{
std::cout.fill( '.' );
COUT "foo" << std::endl;
COUT "bar" << std::endl;
return 0;
}
输出:
..........foo
..........bar
答案 2 :(得分:0)
为什么不创建一个函数?
伪代码,例如
void format_cout(text, w) {
cout << text << width(w);
}
这有点斗志,但希望你明白了。