如何在c ++流中使用标志?我知道ios_base::flags()
,但当我cout
或比较它们时,即使使用新标志,它们也不会更改值。一个简单的程序:
#include <iostream>
using namespace std;
int main(){
cout << cout.flags() << endl;//4098
cout << std::hex << cout.flags() << endl;// 0x1002
return 0;
}
不会更改输出的默认值(至少对我而言)为4098。
我的最终目标是将流与标志进行比较,以查看哪些设置,不设置新的。谁能告诉我一个如何做到这一点的例子?
答案 0 :(得分:2)
使用此代码:
cout << std::hex << cout.flags() << endl;
允许编译器按此顺序对其进行评估:
ios_base::fmtflags f = cout.flags(); // store value before applying std::hex
cout << hex;
cout << f;
cout << endl;
因此,您不能保证以这种方式“看到”标志更改。但是,它不是未定义的行为。
标志是“位掩码类型”,它被定义为具有某些属性 - 实际使用的类型是实现定义的,但整数,枚举和std :: bitsets是可能的。您可以使用普通的位操作运算符:^,&amp;,|和〜:
bool is_hex(std::ios_base &s) {
return (s.flags() & s.basefield) == s.hex;
}
// is_oct is identical, except with s.oct
// Nothing set in basefield means "determine base from input" for istreams,
// and ostreams use base 10. This makes is_dec harder to write.
bool is_anybase(std::istream &s) {
return (s.flags() & s.basefield) == 0;
}
bool is_dec(std::istream &s) {
std::ios_base::fmtflags base = s.flags() & s.basefield;
return base == dec;
}
bool is_dec(std::ostream &s) {
std::ios_base::fmtflags base = s.flags() & s.basefield;
return (base == dec) || (base == 0);
}
// Purposeful overload ambiguity on std::iostream.
// In 0x, we could write:
bool is_dec(std::iostream &s) = delete;
例如,这就是std :: hex的工作原理:
std::ios_base& hex(std::ios_base &s) {
s.setf(s.hex, s.basefield);
return s;
}
setf在哪里:
ios_base::fmtflags fmtflags = s.hex; // first parameter
ios_base::fmtflags mask = s.basefield; // second parameter
s.flags((s.flags() & ~mask) | (fmtflags & mask));