摘要: 一、常用函数 函数名 全部单词 作用 malloc memory allocation 申请空间(连续) calloc contiguous allocation 申请空间 + 数据初始化 realloc re-allocation 修改空间大小 free free 释放空间 二、函数的细节点 ma 阅读全文
posted @ 2025-05-27 18:37 zhaoyonghui 阅读(15) 评论(0) 推荐(0)
摘要: 一、共用体 核心:一种数据可能有多种类型 union Money { double mond; int moni; char mons; }; 二、共用体的特点 共用体,也叫联合体,共同体 所有的变量都使用内一个内存空间 所占的内存大小 = 最大成员的长度 每次只能给一个变量进行赋值,因为第二次赋值 阅读全文
posted @ 2025-05-27 17:42 zhaoyonghui 阅读(20) 评论(0) 推荐(0)
摘要: 一、结构体 struct 结构体名字 { 成员1; 成员2; ... }; 二、起别名 typedef struct GirlFriend { 成员1; 成员2; ... }别名; 三、内存对齐 确定变量位置:只能放在自己类型整数倍的内存地址上 最后一个补位:结构体的总大小,是最大类型的整数倍 阅读全文
posted @ 2025-05-27 12:39 zhaoyonghui 阅读(8) 评论(0) 推荐(0)