共计 1936 个字符,预计需要花费 5 分钟才能阅读完成。
这篇文章主要介绍“C 语言中结构体 struct 怎么对齐”,在日常操作中,相信很多人在 C 语言中结构体 struct 怎么对齐问题上存在疑惑,丸趣 TV 小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”C 语言中结构体 struct 怎么对齐”的疑惑有所帮助!接下来,请跟着丸趣 TV 小编一起来学习吧!
struct,相互关联的元素的集合,每个元素都有自己的内存空间;每个元素在内存中的存放是有先后顺序的,就是定义时候的顺序;一个 struct 所占的总的内存大小,并不是各个元素所占空间之和,而是存在字节对齐的问题.
struct 中的每个元素相对于结构体的首地址的偏移量能被该元素的 size 整除 (某些编译器, 如果该元素的 size 4,则偏移量能被 4 整除即可).
测试代码:
[xdb@localhost test]$ cat test.cpp
#include cstdio
#include iostream
using namespace std;
#define LL long long
struct E1 {
int a; char b; char c;
struct E2 {
char b; int a; char c;
struct E3 {
char a; short b; int c; LL d;
struct E4 {
int c; LL d; char a; short b;
struct E5 {
char a1,a2,a3,a4,a5,a6;
struct E6 {
char a1,a2,a3;
struct E7 {
struct E5 elem5;
struct E6 elem6;
LL a;
struct E8 { char a[9];
struct E9 {
struct E8 elem8;
LL a;
struct E10 {
char a;
int main() {
puts( ---- E1
cout sizeof(E1) endl;
printf(%x %x %x %x\n , e1, e1.a, e1.b, e1.c);
puts( ---- E2
cout sizeof(E2) endl;
printf(%x %x %x %x\n , e2, e2.b, e2.a, e2.c);
puts( ---- E3
cout sizeof(E3) endl;
printf(%x %x %x %x %x\n , e3, e3.a, e3.b, e3.c, e3.d);
puts( ---- E4
cout sizeof(E4) endl;
printf(%x %x %x %x %x\n , e4, e4.c, e4.d, e4.a, e4.b);
puts( ---- E5
cout sizeof(E5) endl;
puts( ---- E6
cout sizeof(E6) endl;
puts( ---- E7
cout sizeof(E7) endl;
printf(%x %x %x %x\n , e7, e7.elem5, e7.elem6, e7.a);
puts( ---- E8
cout sizeof(E8) endl;
puts( ---- E9
cout sizeof(E9) endl;
printf(%x %x %x\n , e9, e9.elem8, e9.a);
puts( ---- E10
cout sizeof(E10) endl;
return 0;
[xdb@localhost test]$
编译, 执行
[xdb@localhost test]$ g++ test.cpp -o test
[xdb@localhost test]$ ./test
---- E1
6021a0 6021a0 6021a4 6021a5
---- E2
6021a8 6021a8 6021ac 6021b0
---- E3
6021c0 6021c0 6021c2 6021c4 6021c8
---- E4
6021d0 6021d0 6021d8 6021e0 6021e2
---- E5
---- E6
---- E7
602200 602200 602206 602210
---- E8
---- E9
602230 602230 602240
---- E10
[xdb@localhost test]$
到此,关于“C 语言中结构体 struct 怎么对齐”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注丸趣 TV 网站,丸趣 TV 小编会继续努力为大家带来更多实用的文章!
正文完