我正在使用 boost::format 打印出一个结构。但是, boost::format 似乎无法处理“位域”,请参见以下示例:
// Linux: g++ test.cc -lboost_system
#include <cstdio>
#include <iostream>
#include <boost/format.hpp>
struct bits_t {
unsigned int io: 1;
unsigned int co;
};
int main(void) {
using std::cout;
using boost::format;
bits_t b; b.io = 1; b.co = 2;
printf("io = %d \n", b.io); // Okay
cout << format("co = %d \n") % b.co; // Okay
// cout << format("io = %d \n") % b.io; // Not Okay
return 0;
}
注意cout
我注释掉的第二个,它试图打印出位字段printf
,但编译器抱怨:
`error: cannot bind bitfield ‘b.bits_t::io’ to ‘unsigned int&’
我想知道我错过了什么?谢谢