第八章更新

This commit is contained in:
lzy
2024-04-13 17:40:07 +08:00
parent 5dc779eb22
commit 431558b5e9
2 changed files with 63 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
- [函数传参(值,地址)](#函数传参值地址-1)
- [位域](#位域)
- [枚举](#枚举)
- [typedef](#typedef)
# 构造类型
@@ -224,3 +225,8 @@ enum 标识符
};
```
## typedef
为已有的数据类型改名。
`typedef 已有的数据类型 新名字;`