标签: c delphi bit-fields
请帮帮我,我怎么能在delphi中做到这一点? 感谢。
struct x { uint32 a : 32; unsigned int b : 20; unsigned int c : 4; };
答案 0 :(得分:1)
该struct使用名为bitfields的C功能,其中整数可以具有小数字节的宽度。 Delphi中没有位域,有关如何使用对象的详细信息,请参阅此问题的答案
How to simulate bit-fields in Delphi records?