32

我正在尝试使用 gcc 编译一个之前使用 SunStudio 的项目,并且在以下代码中出现错误:

ostream & operator << ( ostream & os, const UtlDuration & d )
{
    if ( d._nsec == 0 )
    {
        os << d._sec << " sec";
        return os;
    }
    else
    {
        cout.fill( '0' );
                os << d._sec << "." << std::setw(9) << d._nsec << " sec";
        cout.fill( ' ' );
        return os;
    }
}

错误:“setw”不是“std”的成员</p>

我无法解决此错误,有人可以解释一下此错误背后的原因吗

4

2 回答 2

78

您需要包含声明它的标题:

#include <iomanip>
于 2013-09-24T14:01:43.367 回答
1

执行以下两个步骤:

  1. 包括 iomanip
  2. 写 std::setw() 而不是 setw()

编译并享受...

于 2018-11-24T06:31:49.593 回答