From b400d13fd72c6425dd1bfda5cd1fdb97e8f71855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E5=A4=A7=E4=BB=99?= <1900919313@qq.com> Date: Thu, 10 Oct 2024 09:01:16 +0000 Subject: [PATCH] =?UTF-8?q?2024=E5=B9=B410=E6=9C=8810=E6=97=A5=2017:01?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/notes/02_c-leap/07_xdx/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/notes/02_c-leap/07_xdx/index.md b/docs/notes/02_c-leap/07_xdx/index.md index 6186549..9952fd7 100644 --- a/docs/notes/02_c-leap/07_xdx/index.md +++ b/docs/notes/02_c-leap/07_xdx/index.md @@ -541,8 +541,8 @@ struct 结构体类型名称 结构体变量名; > > 在 C 语言中,结构体(struct)和结构体变量是两个不同的概念,如下所示: > -> * ① 结构体是一种自定义的数据类型,像一种模板,定义了数据的格式。 -> * ② 结构体变量是根据结构体类型创建的变量,代表了一个具体的对象,用于存储数据。 +> * ① 结构体是一种自定义的数据类型,像一种模板,定义了数据的格式,不占用内存空间。 +> * ② 结构体变量是根据结构体类型创建的变量,代表了一个具体的对象,用于存储数据,需要内存空间来存储。