代码如下:
typedef union {
unsigned int myvalue;
struct{
unsigned myvalueL:8;
unsigned myvalueH:8;
}child;
}_mytype;
_mytype mytype;
void main()
{
mytype.myvalue = 0x1234;
}
仿真如下:
是你要的结果吧
12月18日 编辑 fanwen51.com
代码如下:
typedef union {
unsigned int myvalue;
struct{
unsigned myvalueL:8;
unsigned myvalueH:8;
}child;
}_mytype;
_mytype mytype;
void main()
{
mytype.myvalue = 0x1234;
}
仿真如下:
是你要的结果吧