C語言中結構體struct怎么對齊

這篇文章主要介紹“C語言中結構體struct怎么對齊”,在日常操作中,相信很多人在C語言中結構體struct怎么對齊問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C語言中結構體struct怎么對齊”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

專注于為中小企業(yè)提供網站設計、成都做網站服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)屏南免費做網站提供優(yōu)質的服務。我們立足成都,凝聚了一批互聯網行業(yè)人才,有力地推動了1000+企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網站建設實現規(guī)模擴充和轉變。

struct,相互關聯的元素的集合,每個元素都有自己的內存空間;每個元素在內存中的存放是有先后順序的,就是定義時候的順序;一個struct所占的總的內存大小,并不是各個元素所占空間之和,而是存在字節(jié)對齊的問題.
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;
}e1;
struct E2 {
    char b; int a; char c;
}e2;
struct E3 {
    char a; short b; int c; LL d;
}e3;
struct E4 {
    int c; LL d; char a; short b;
}e4;
struct E5 {
    char a1,a2,a3,a4,a5,a6;
}e5;
struct E6 {
    char a1,a2,a3;
}e6;
struct E7 {
    struct E5 elem5;
    struct E6 elem6;
    LL a;
}e7;
struct E8 {
    char a[9];
}e8;
struct E9 {
    struct E8 elem8;
    LL a;
}e9;
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]$

編譯,執(zhí)行

[xdb@localhost test]$ g++ test.cpp -o test
[xdb@localhost test]$ ./test
----> E1
8
6021a0 6021a0 6021a4 6021a5
----> E2
12
6021a8 6021a8 6021ac 6021b0
----> E3
16
6021c0 6021c0 6021c2 6021c4 6021c8
----> E4
24
6021d0 6021d0 6021d8 6021e0 6021e2
----> E5
6
----> E6
3
----> E7
24
602200 602200 602206 602210
----> E8
9
----> E9
24
602230 602230 602240
----> E10
1
[xdb@localhost test]$

到此,關于“C語言中結構體struct怎么對齊”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

文章名稱:C語言中結構體struct怎么對齊
地址分享:http://muchs.cn/article36/pihhpg.html

成都網站建設公司_創(chuàng)新互聯,為您提供手機網站建設自適應網站、、網站排名搜索引擎優(yōu)化、微信公眾號

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯

外貿網站制作