我使用 g++ 编译带有压缩字段的代码。但是,在尝试返回对打包字段的引用时收到错误消息。
例子:
struct __attribute__((packed)) Foo {
int* ptr;
uint16_t foo;
int*& getPtr(){
return ptr;
}
};
产生错误:
test.cpp:22:14: error: cannot bind packed field ‘((Foo*)this)->Foo::ptr’ to ‘int*&’
return ptr;
为什么我不能返回对打包字段的引用?