Linux下C语言教程-李慧芹老师-第八章

配套代码笔记仓库

目录

构造类型

结构体

产生的原因及意义

存放不同类型的数据到一起。

类型的描述

1
2
3
4
5
6
struct 结构体名
{
数据类型 成员1
数据类型 成员2
......
};

嵌套定义

定义变量(变量,数组,指针),初始化及成员引用

成员引用: 变量名. 成员名,指针->成员名,(*指针).成员名

结构体占用的内存空间大小

函数传参(值,地址)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include <stdio.h>
#include <stdlib.h>

#define NAMESIZE 32

struct
{
int i;
char ch;
float f;
} a =
{
1,
'a',
},
b, c, *p, *q;

struct simp_st
{
int i;
char ch;
float f;
// char ch1;
}; // __attribute__((packed));


struct student_st
{
int id;
char name[NAMESIZE];
// struct birthday_st birth;
struct birthday_st
{
int year;
int month;
int day;
} birth;
int math;
int chinese;
};


void func(struct simp_st *b)
{
printf("%d\n", sizeof(b));
}

int main()
{
// TYPE NAME = VALUE;


struct simp_st a;
struct simp_st *p = &a;

// func(a);

func(p);




// printf("sizeof(point) = %d\n", sizeof(p));
// printf("sizeof(struct) = %d\n", sizeof(a));
// out:
// sizeof(point) = 8
// sizeof(struct) = 12



#if 0
struct student_st stu = {10011, "Alan", {2011, 11, 11}, 98, 97};
struct student_st *p = &stu;
struct student_st arr[2] = {{.name = "Alan"}, {.name = "John"}};

p = &arr[0];

// struct student_st stu = {.math = 98, .chinese = 97};

// printf("%d %s %d-%d-%d %d %d\n",
// stu.id,
// stu.name,
// stu.birth.year,
// stu.birth.month,
// stu.birth.day,
// stu.math,
// stu.chinese);

// printf("%d %s %d-%d-%d %d %d\n",
// p->id,
// p->name,
// p->birth.year,
// p->birth.month,
// p->birth.day,
// p->math,
// p->chinese);

for (int i = 0; i < 2; i++, p++)
{
printf("%s ", p->name);
}
printf("\n");

#endif

#if 0
struct simp_st a = {123, 456.789, 'a'};
a.i = 112233;
printf("%d %f %c", a.i, a.f, a.ch);
#endif

exit(0);
}

跳过

共用体

产生及意义

类型描述

1
2
3
4
5
6
union 共用体名
{
数据类型 成员名1;
数据类型 成员名2;
......
};

嵌套定义

定义变量(变量,数组,指针),初始化及成员引用

占用内存大小

函数传参(值,地址)

位域

枚举

1
2
3
4
5
6
enum 标识符
{
成员1;
成员2;
成员3;
};

Linux下C语言教程-李慧芹老师-第八章
http://sinlatansen.github.io/2024/04/12/Linux下C语言教程-李慧芹老师-第八章/
作者
fugu
发布于
2024年4月12日
许可协议