C语言中布局体(struct)的位字段(:) 详解
布局体(struct)可以利用位字段(:), 节减空间, 如以下代码,
布局体a中的, 第一个变量x占用1个字符, y占用2个字符, z占用33个字符(越界);
可是sizeof()会自动补齐, 如x+y一共占用4个字节, z占用8个字节, 所以布局体占用12个字节;
当利用加法运算时, 会初始化为0;
代码:
/*
* test.cpp
*
* Created on: 2014.05.23
* Author: Spike
*/
/*eclipse cdt, gcc 4.8.1*/
#include <iostream>
#include <stdio.h>
using namespace std;
struct a {
int x:1;
int y:2;
int z:33;
};
int main()
{
a d;
cout << &d << std::endl;
d.z = d.x + d.y;
printf("%d %d %d %d\n", d.x, d.y, d.z, sizeof(d));
return 0;
}
输出:
0x22fed4 0 0 0 12