现在有一个这样的结构体:
struct Point{ float x, y, z; unsigned char r, g, b; };
因为要将其写入一种点云文件中,所以6个变量要求必须紧密相邻,并且总的大小应该为sizeof(float)*3+sizeof(unsigned char)*3但是我们知道,编译器会对结构体变量进行对齐,造成大小发生变化,这样用ofstream::write((char*)point,sizeof(Point))写入文件偏移量就发生错误了,怎样防止这种对齐呢?
业精于勤,荒于嬉;行成于思,毁于随。
VC:#pragma pack(1)GCC:__attribute__ ((aligned (1)))
#pragma pack(1)
__attribute__ ((aligned (1)))
VC:
#pragma pack(1)
GCC:
__attribute__ ((aligned (1)))