“永久” 标准::setw
有没有办法永久设置 std::setw
操纵器(或其函数 width
)? 看看这个:
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <iterator>
int main( void )
{
int array[] = { 1, 2, 4, 8, 16, 32, 64, 128, 256 };
std::cout.fill( '0' );
std::cout.flags( std::ios::hex );
std::cout.width( 3 );
std::copy( &array[0], &array[9], std::ostream_iterator<int>( std::cout, " " ) );
std::cout << std::endl;
for( int i = 0; i < 9; i++ )
{
std::cout.width( 3 );
std::cout << array[i] << " ";
}
std::cout << std::endl;
}
运行后,我看到:
001 2 4 8 10 20 40 80 100
001 002 004 008 010 020 040 080 100
即每个操纵器都保持其位置,除了必须为每个条目设置的 setw
/width
之外。 有没有什么优雅的方式来使用 std::copy
(或其他东西)以及 setw
? 我所说的优雅当然不是指创建自己的函子或函数来将内容写入 std::cout
。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,这是不可能的。 无法让它每次都调用
.width
。 但当然,您可以使用 boost:它确实创建自己的函子,但它发生在幕后:)
Well, it's not possible. No way to make it call
.width
each time again. But you can use boost, of course:It does create its own functor, but it happens behind the scene :)
由于
setw
和width
不会导致持久设置,因此一种解决方案是定义一个覆盖operator<<
的类型,应用setw
在值之前。 这将允许该类型的ostream_iterator
与std::copy
一起运行,如下所示。您可以定义:(1)
FixedWidthVal
作为模板类,其中包含数据类型 (typename
) 和宽度(值)参数,以及 (2) 一个operator
。
用于
ostream
和FixedWidthVal
,对每个插入应用setw
。然后可以使用
std::copy
(或for
循环)应用它:输出 (演示)
Since
setw
andwidth
do not result in a persistent setting, one solution is to define a type that overridesoperator<<
, applyingsetw
before the value. This would allow anostream_iterator
for that type to function withstd::copy
as below.You could define: (1)
FixedWidthVal
as a template class with parameters for data type (typename
) and width (value), and (2) anoperator<<
for anostream
and aFixedWidthVal
that appliessetw
for each insertion.Then it could be applied with
std::copy
(or afor
loop):Output (demo)