·C語言中的struct能夠看作變量的集合
不一樣類型的變量放在一塊兒同時使用數組
例子10-1:spa
struct Ts
{
};
int main()
{code
struct Ts t1; struct Ts t2; printf("sizeof(struct Ts) = %d\n", sizeof(struct Ts)); printf("sizeof(t1) = %d\n", sizeof(t1)); printf("sizeof(t1) = %d\n", sizeof(t2)); return 0;
}
輸出結果:
error;代碼中不容許出現空結構體blog
空結構體佔用的內存爲0;內存
結構體與柔性數組
·柔性數組即數組大小待定的數組
·C語言中能夠由結構體產生柔性數組
·C語言中結構體的最後一個元素能夠是大小未知的數組it
例子10-1-1:io
struct soft_array
{class
int len; int array[];
};
int main()
{變量
printf("sizeof(struct soft_array) = %d\n", sizeof(struct soft_array)); return 0;
}
輸出結果:
sizeof(struct soft_array) = 4語法
int array[]在代碼中不佔用內存,只是一個標識。
柔性數組使用分析例子10-2:
struct SoftArray
{
int len; int array[];
};
struct SoftArray* create_soft_array(int size)
{
struct SoftArray *ret = NULL; if (size > 0) { ret = (struct SoftArray*)malloc(sizeof(struct SoftArray) + sizeof(int)*size); ret->len = size; } return ret;
};
void delete_soft_array(struct SoftArray* sa)
{
free(sa);
}
void func(struct SoftArray* sa)
{
int i = 0; if (sa != NULL) { for (i = 0; i < sa->len; i++) { sa->array[i] = i + 1; } }
}
int main()
{
int i = 0; struct SoftArray*sa = create_soft_array(10); func(sa); for (i = 0; i < sa->len; i++) { printf("%d\n", sa->array[i]); }
}
輸出結果:
1
2
3
4
5
6
7
8
9
10
C語言中的union
·C語言中的union在語法上與struct類似
·union只分配最大成員的空間,全部成員共享這個空間
·union的使用受系統大小端的影響
小端模式:佔用系統的低位
大端模式:佔用系統的高位
判斷系統的大小端 例子10-3.c
int system_mode()
{
typedef union { int a; char b; }TS; TS sm; sm.a = 1; return sm.b;
}
int main()
{
printf("system_mode:%d\n", system_mode()); return 0;
}
輸出結果:
system_mode:1
小結:·struct中的每一個數據成員都有獨立的空間·struct能夠經過最後的數組標識符產生柔性數組·union中的全部數據成員共享同一個存儲空間·union是使用會受到系統大小端的影響