摘要:如果开辟失败,则返回一个指针,因此的返回值一定要做检查。函数用来释放动态开辟的内存。
- 堆区
- malloc calloc realloc free
在堆区上申请size_t大小的空间 返回这块空间的起始位置
void* malloc(size_t t);
这个函数向内存申请一块连续可用的空间,并返回指向这块空间的指针。
- 如果开辟成功,则返回一个指向开辟好空间的指针。
- 如果开辟失败,则返回一个NULL指针,因此malloc的返回值一定要做检查。
- 返回值的类型是 void* ,所以malloc函数并不知道开辟空间的类型,具体在使用的时候使用者自己来决定。
- 如果参数 size 为0,malloc的行为是标准是未定义的,取决于编译器。
free函数用来释放动态开辟的内存。
- 如果参数 ptr 指向的空间不是动态开辟的,那free函数的行为是未定义的。
- 如果参数 ptr 是NULL指针,则函数什么事都不做。
#include #include int main(){ // 1. 开辟空间 int* p = (int*)malloc(40); // 申请40大小空间 把起始地址强转为int* 赋给p if (p == NULL) { return -1; } // 开辟成功了 可以使用 int i = 0; for (i = 0; i < 10; i++) { *(p + i) = i; } // 2. 释放空间 free(p); p = NULL; // return 0;}
void* calloc (size_t num, size_t size);
malloc函数只负责在堆区申请空间,并且返回起始地址,不初始化空间
calloc函数在堆区上申请空间,并且在返回起始地址之前把申请的每个字节初始化为0
#include #include #include int main(){ int* p = (int*)calloc(10, sizeof(int)); if (p == NULL) { printf("%s/n", strerror(errno)); return -1; } // 申请成功 int i = 0; for (i = 0; i < 10; i++) { printf("%d ", *(p + i)); } // 释放空间 free(p); p = NULL; return 0;}
让动态内存管理更加灵活
void* realloc (void* ptr, size_t size);
ptr 是要调整的内存地址
size 调整之后新大小
返回值为调整之后的内存起始位置。
这个函数调整原内存空间大小的基础上,还会将原来内存中的数据移动到 新 的空间
两种情况:
#include #include #include int main(){ int* p = (int*)calloc(10, sizeof(int)); if (p == NULL) { printf("%s/n", strerror(errno)); return -1; } int i = 0; for (i = 0; i < 10; i++) { *(p + i) = i; } // 空间不够大,增加空间至20int int* ptr = (int*)realloc(p, 20 * sizeof(int)); if (ptr != NULL) { p = ptr; } else { return -1; } // 增加成功,使用 for (i = 10; i < 20; i++) { *(p + i) = i; } for (i = 0; i < 20; i++) { printf("%d ", *(p + i)); } free(p); p = NULL; return 0;}
int* p = (int*)malloc(20);*p = 0; // 有风险
#include #include int main(){ int* p = (int*)malloc(20); if (p == NULL) { return -1; } *p = 0; return 0;}
#include #include int main(){ int* p = (int*)malloc(200); if (p == NULL) { return -1; } int i = 0; for (i = 0; i < 80; i++) { *(p + i) = 1; } for (i = 0; i < 80; i++) { printf("%d ", *(p + i)); } free(p); p = NULL; return 0;}
int main(){ int a = 10; int* p = &a; free(p); // err p = NULL; return 0;}
改变了p 不再指向起始位置 此时释放的不在 起始位置
#include #include int main(){ int* p = (int*)malloc(10 * sizeof(int)); if (p == NULL) { return -1; } int i = 0; for (i = 0; i < 10; i++) { *p++ = 1; } free(p); p = NULL; return 0;}
int main(){ int* p = (int*)malloc(40); if (p == NULL) { return -1; } free(p); free(p); // err}int main(){ int* p = (int*)malloc(40); if (p == NULL) { return -1; } free(p); p = NULL; free(p); // ok}
在堆区上申请空间,有2种回收方式,
- free
- 程序退出时,申请的空间回收
int main(){ int* p = (int*)malloc(40); if (p == NULL) { return -1; } // 没有释放 return 0;}
#include #include void GetMemory(char* p){ p = (char*)malloc(100);} void Test(void){ char* str = NULL; GetMemory(str); strcpy(str, "hello world"); printf(str);} int main(){ Test(); return 0;}
程序会崩溃
修改:
版本1:
#include #include #include void GetMemory(char** p){ *p = (char*)malloc(100);} void Test(void){ char* str = NULL; GetMemory(&str); // char** strcpy(str, "hello world"); printf(str); // 释放 free(str); str = NULL;} int main(){ Test(); return 0;}
版本2:
#include #include #include char* GetMemory(char* p){ p = (char*)malloc(100); return p;} void Test(void){ char* str = NULL; str = GetMemory(str); strcpy(str, "hello world"); printf(str); free(str); str = NULL;} int main(){ Test(); return 0;}
#include char* GetMemory(void){ char p[] = "hello world"; return p;} void Test(void){ char* str = NULL; str = GetMemory(); printf(str);} int main(){ Test(); return 0;}
【返回栈空间地址问题】
#include int* test(){ int n = 10; return &n;} int main(){ int* p = test(); printf("%d/n", *p); // 如果没有被覆盖,有可能输出10 return 0;}
#include void GetMemory(char** p, int num){ *p = (char*)malloc(num);}void Test(void){ char* str = NULL; GetMemory(&str, 100); strcpy(str, "hello"); printf(str);}int main(){ Test(); return 0;}
通过*p 用malloc给str在堆上开辟空间,
问题:
内存泄漏,没有free
free(str);
str = NULL;
改正:
#include #include void GetMemory(char** p, int num){ *p = (char*)malloc(num);}void Test(void){ char* str = NULL; GetMemory(&str, 100); strcpy(str, "hello"); printf(str); free(str); str = NULL;}int main(){ Test(); return 0;}
#include #include void Test(void){ char* str = (char*)malloc(100); strcpy(str, "hello"); free(str); if (str != NULL) { strcpy(str, "world"); printf(str); }}int main(){ Test(); return 0;}
改正:
#include #include void Test(void){ char* str = (char*)malloc(100); strcpy(str, "hello"); free(str); str = NULL; if (str != NULL) { strcpy(str, "world"); printf(str); }}int main(){ Test(); return 0;}
C99 中,结构中的最后一个元素允许是未知大小的数组,这就叫做『柔性数组』成员。
// 数组大小不确定,可大可小typedef struct st_type{ int i; int a[0];//柔性数组成员}type_a;// 编译器报错无法编译可改成:typedef struct st_type{ int i; int a[];//柔性数组成员}type_a;
1. 结构中的柔性数组成员前面必须至少一个其他成员 如 int a[] 前有 int i2. sizeof 返回的这种结构大小不包括柔性数组的内存
#include typedef struct <
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/121274.html
摘要:释放不完全导致内存泄漏。既然把柔性数组放在动态内存管理一章,可见二者有必然的联系。包含柔性数组的结构用进行动态内存分配,且分配的内存应大于结构大小,以满足柔性数组的预期。使用含柔性数组的结构体,需配合以等动态内存分配函数。 ...
阅读 1721·2021-11-25 09:43
阅读 1752·2021-11-24 10:41
阅读 3069·2021-09-27 13:36
阅读 790·2019-08-30 15:53
阅读 3537·2019-08-30 15:44
阅读 847·2019-08-30 14:03
阅读 2553·2019-08-29 16:38
阅读 979·2019-08-29 13:23