有什么方法可以永久设置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

最佳答案

好吧,这是不可能的。无法使其再次调用.width。但是,您当然可以使用boost:

#include <boost/function_output_iterator.hpp>
#include <boost/lambda/lambda.hpp>
#include <algorithm>
#include <iostream>
#include <iomanip>

int main() {
    using namespace boost::lambda;
    int a[] = { 1, 2, 3, 4 };
    std::copy(a, a + 4,
        boost::make_function_output_iterator(
              var(std::cout) << std::setw(3) << _1)
        );
}

它确实创建了自己的函子,但它在后台发生了:)

10-08 02:45