当前位置:网站首页>【学习笔记之菜Dog学C】动态内存管理
【学习笔记之菜Dog学C】动态内存管理
2022-08-04 02:06:00 【姜君竹】
一、为什么存在动态内存管理
内存分为三个区,栈区、堆区和静态区(也被叫做数据段)。栈区用来存放局部变量、函数形参等临时变量;堆区用来进行动态内存开辟;静态区用来存放全局变量、静态变量等。
形如int val = 20;
、char arr[10] = {0};
的内存开辟方式是在栈空间上开辟的, 它空间开辟大小是固定的,并且在申明数组的时候,必须指定数组的长度,它所需要的内存在编译时分配。
但是有时我们需要的空间大小在程序运行的时候才能知道,那数组的编译时开辟空间的方式就不能满足了,这时候就只能试试动态存开辟了。
二、动态内存介绍
1、malloc函数和free函数
- malloc函数介绍
这个函数向内存申请一块连续可用的空间,并返回指向这块空间的指针;
如果开辟成功,则返回一个指向开辟好空间的指针;
如果开辟失败,则返回一个NULL指针,因此malloc的返回值一定要做检查;
返回值的类型是 void* ,所以malloc函数并不知道开辟空间的类型,具体在使用的时候使用者自己来决定;
如果参数size为0,malloc的行为是标准是未定义的,取决于编译器。
- free函数介绍
C语言提供了另外一个函数free,专门是用来做动态内存的释放和回收的;
如果参数 ptr 指向的空间不是动态开辟的,那free函数的行为是未定义的;
如果参数 ptr 是NULL指针,则函数什么事都不做。
- 代码实例
int main() {
//假设开辟10个整型空间 - 10* sizeof(int)
//动态内存开辟空间
int* p = (int*)malloc(10 * sizeof(int));//void*
//使用这些空间的时候
if (NULL == p) {
//printf + strerror
perror("main");//main:xxxxxxxxxxxxx
return 0;
}
//使用
int i = 0;
for (i = 0; i < 10; i++) {
*(p + i) = i;
printf("%d\n", *(p + i));
}
for (i = 0; i < 10; i++) {
printf("%d ", p[i]);//p[i] --> *(p + i)
}
//回收空间
free(p);
p = NULL;//手动把p置为NULL,防止访问越界在,造成野指针
return 0;
}
malloc基本上和free是成对出现的。
2、calloc函数
- calloc函数介绍
函数的功能是为num个大小为size的元素开辟一块空间,并且把空间的每个字节初始化为0;
与函数malloc的区别只在于calloc会在返回地址之前把申请的空间的每个字节初始化为全0。
- 代码实例
int main() {
int* p = calloc(10, sizeof(int));
if (NULL == p)
return 1;
int i = 0;
for (i = 0; i < 10; i++) {
printf("%d\n", *(p + i));
}
free(p);
p = NULL;
return 0;
}
3、realloc函数
- realloc函数介绍
ptr 是要调整的内存地址;
size 调整之后新大小;
返回值为调整之后的内存起始位置;
这个函数调整原内存空间大小的基础上,还会将原来内存中的数据移动到 新 的空间;
realloc在调整内存空间的是存在两种情况:
情况1:原有空间之后有足够大的空间
情况2:原有空间之后没有足够大的空间
情况一:
情况二:
- 代码实例
int main() {
int* p = calloc(10, sizeof(int));
if (NULL == p) {
perror("mian");
return 1;
}
//使用
int i = 0;
for (i = 0; i < 10; i++) {
printf("%d\n", *(p + i));
}
//这里需要p指向的空间更大,需要20个int函数
//realloc调整空间
int* ptr = realloc(p, 20 * sizeof(int));
if (ptr != NULL) {
p = ptr;
}
free(p);
p = NULL;
return 0;
}
三、常见动态内存错误
- 对NULL指针进行解引用操作
void test()
{
int* p = (int*)malloc(INT_MAX / 4);
*p = 20;//如果p的值是NULL,就会有问题
free(p);
}
- 对动态开辟的空间越界访问
void test()
{
int i = 0;
int* p = (int*)malloc(10 * sizeof(int));
if (NULL == p)
{
exit(EXIT_FAILURE);
}
for (i = 0; i <= 10; i++)
{
*(p + i) = i;//当i是10的时候越界访问
}
free(p);
}
- 对非动态开辟的内存使用free释放
void test()
{
int a = 10;
int* p = &a;
free(p);//ok?
}
- 使用free释放一块动态开辟内存的一部分
void test()
{
int* p = (int*)malloc(100);
p++;
free(p);//p不再指向动态内存的起始位置
}
- 对同一块动态内存多次释放
void test()
{
int* p = (int*)malloc(100);
free(p);
free(p);//重复释放
}
- 动态开辟内存忘记释放,导致内存泄露
void test()
{
int* p = (int*)malloc(100);
if (NULL != p)
{
*p = 20;
}
}
int main()
{
test();
while (1);
}
边栏推荐
- 循环绕过问题
- 【原创】启动Win10自带的XPS/OXPS阅读器
- Priority_queue element as a pointer, the overloaded operators
- Engineering drawing review questions (with answers)
- Continuing to invest in product research and development, Dingdong Maicai wins in supply chain investment
- Installation and configuration of nodejs+npm
- Web APIs BOM - operating browser: swiper plug-in
- 什么是SVN(Subversion)?
- splice随机添加和删除的写法
- 网页三维虚拟展厅为接入元宇宙平台做基础
猜你喜欢
JS 从零教你手写节流throttle
initramfs详解----添加硬盘驱动并访问磁盘
持续投入商品研发,叮咚买菜赢在了供应链投入上
Example 041: Methods and variables of a class
持续投入商品研发,叮咚买菜赢在了供应链投入上
Deng Qinglin, Alibaba Cloud Technical Expert: Best Practices for Disaster Recovery across Availability Zones and Multiple Lives in Different Locations on the Cloud
Continuing to pour money into commodities research and development, the ding-dong buy vegetables in win into the supply chain
flask框架初学-06-对数据库的增删改查
Use nodejs switch version (no need to uninstall and reinstall)
Parquet encoding
随机推荐
MallBook联合人民交通出版社,推动驾培领域新发展,开启驾培智慧交易新生态
Oracle迁移到瀚高之后,空值问题处理
Download install and create/run project for HBuilderX
工程制图复习题(带答案)
Sky map coordinate system to Gaode coordinate system WGS84 to GCJ02
IDEA02:配置SQL Server2019数据库
Flask Framework Beginner-05-Command Management Manager and Database Use
持续投入商品研发,叮咚买菜赢在了供应链投入上
Deng Qinglin, Alibaba Cloud Technical Expert: Best Practices for Disaster Recovery across Availability Zones and Multiple Lives in Different Locations on the Cloud
Example 041: Methods and variables of a class
Example 039: Inserting elements into an ordered list
网页三维虚拟展厅为接入元宇宙平台做基础
一个注解替换synchronized关键字:分布式场景下实现方法加锁
SAP SD module foreground operation
循环绕过问题
计算首屏时间
大佬们,读取mysql300万单表要很长时间,有什么参数可以优惠,或者有什么办法可以快点
简单的线性表的顺序表示实现,以及线性表的链式表示和实现、带头节点的单向链表,C语言简单实现一些基本功能
initramfs详解----添加硬盘驱动并访问磁盘
idea中diagram使用