相当于 %02d 与 std::stringstream?
我想以 printf
的 %02d
的等效格式将整数输出到 std::stringstream
.有没有比以下更简单的方法来实现这一点:
I want to output an integer to a std::stringstream
with the equivalent format of printf
's %02d
. Is there an easier way to achieve this than:
std::stringstream stream;
stream.setfill('0');
stream.setw(2);
stream << value;
是否可以将某种格式标志流式传输到 stringstream
,例如(伪代码):
Is it possible to stream some sort of format flags to the stringstream
, something like (pseudocode):
stream << flags("%02d") << value;
推荐答案
您可以使用 <iomanip>
中的标准操纵器,但没有一个可以同时完成 fill
和 width
一次:
You can use the standard manipulators from <iomanip>
but there isn't a neat one that does both fill
and width
at once:
stream << std::setfill('0') << std::setw(2) << value;
编写自己的对象在插入流中时执行这两个功能并不难:
It wouldn't be hard to write your own object that when inserted into the stream performed both functions:
stream << myfillandw( '0', 2 ) << value;
例如
struct myfillandw
{
myfillandw( char f, int w )
: fill(f), width(w) {}
char fill;
int width;
};
std::ostream& operator<<( std::ostream& o, const myfillandw& a )
{
o.fill( a.fill );
o.width( a.width );
return o;
}
相关文章