mirror of
https://github.com/Aexiar/c.git
synced 2024-10-22 14:05:45 +02:00
2024年10月10日 13:35
This commit is contained in:
parent
f21ef09321
commit
d5f70bb54f
BIN
docs/notes/02_c-leap/07_xdx/assets/1.png
Normal file
BIN
docs/notes/02_c-leap/07_xdx/assets/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 71 KiB |
@ -1,3 +1,21 @@
|
||||
# 第一章:枚举(⭐)
|
||||
|
||||
## 1.1 回顾 C 语言中的变量
|
||||
|
||||
* C 语言中的变量,按照`数据类型`划分,如下所示:
|
||||
|
||||
![](./assets/1.png)
|
||||
|
||||
|
||||
|
||||
## 1.2 什么是枚举?
|
||||
|
||||
* `枚举`(Enumeration )是 C 语言中的一种`自定义数据类型`(构造类型),
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
在C语言、C++等编程语言中,结构体(`struct`)是一种用户自定义的数据类型,可以包含不同类型的数据字段。结构体的目的是将多个不同类型的数据组合在一起形成一个整体。结构体中可以包含以下数据类型:
|
||||
|
||||
1. **基本数据类型**:
|
||||
|
Loading…
Reference in New Issue
Block a user