到目前为止,我们已经掌握的内存开辟方式有两种:
int val = 20; //在栈空间上开辟四个字节
char arr[10] = {0}; //在栈空间上开辟10个字节的连续空间
上述的开辟空间的方式有两个特点:
但是对于空间的需求,不仅仅是上述的情况。有时候我们需要的空间大小在程序运行的时候才能知道,那数组的编译时开辟空间的方式就不能满足了。
这两种内存开辟的方法创建的空间大小是固定的,不能发生变化,因此就存在一定的局限性。C语言为了让我们更加灵活容易的控制我们所需的内存空间的大小,提供了动态内存管理的功能,也相应地提供了一些动态内存管理的函数。那这篇博客将带着大家来认识这些函数。
C语言提供了一个动态内存开辟的函数:
这个函数向内存申请一块连续可用的空间(字节),并返回指向这块空间的指针。
C语言提供了另外一个函数free,专门是用来做动态内存的释放和回收的:
free函数用来释放动态开辟的内存,参数是开辟内存的起始位置。
malloc 和 free 都声明在 stdlib.h 头文件中。
malloc 和 free 函数的基本使用:
申请20个字节的内存空间来存放整形
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
int main()
{
int* p = (int*)malloc(20); // 由于要存储的为整形,使用int* 的指针来管理比较方便
// malloc的返回值为void*,想要将其赋给int* 的指针,必须进行强
// 制类型转化
// malloc 函数也是有可能开辟空间失败的,一般都会对malloc函数的返回值进行判断
if (p == NULL)
{
printf("%s\n", strerror(errno));
}
//使用
int i = 0;
for (i = 0; i < 5; i++)
{
*(p + i) = i + 1;
printf("%d ", *(p + i));
}
//需要对主动申请的空间需要进行主动释放
free(p);
//虽然已经释放了p指向的内存,但p还是指向地址没有发生变化,为了避免野指针,应该将p置空
p = NULL;
}
malloc函数在初始化时会将每个字节赋一个随机值:
因此C语言还提供了一个函数叫 calloc , calloc 函数也用来动态内存分配:
calloc 函数的基本使用:
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
int* p = (int*)calloc(10,sizeof(int)); // 开辟10个整形的空间
if (p == NULL)
{
printf("calloc() --> %s\n", strerror(errno));
}
//使用
int i = 0;
for (i = 0; i < 10; i++)
{
printf("%d ", *(p + i));
}
//释放
free(p);
p = NULL;
return 0;
}
calloc 和 malloc 函数的对比:
在实际使用realloc函数时可能会出现以下两种情况:
情况一:realloc 返回的是旧地址,要扩展内存就直接原有内存之后直接追加空间,原来空间的数据不发生变化。
在遇到情况二时需要注意一些点:
原有空间之后没有足够多的空间时,扩展的方法是:在堆空间上另找一个合适大小的连续空间来使用,这样函数返回的是一个新的内存地址。
realloc 的基本使用:
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
int* p = (int*)malloc(20);
if (p == NULL)
{
printf("%s\n", strerror(errno));
}
//使用
int i = 0;
for (i = 0; i < 5; i++)
{
*(p + i) = i + 1;
}
int* ptr = (int*)realloc(p, 40);
if (ptr != NULL)
{
p = ptr;
for (i = 5; i < 10; i++)
{
*(p + i) = i + 1;
}
for (i = 0; i < 10; i++)
{
printf("%d ", *(p + i));
}
}
else
{
printf("realloc --> %s\n", strerror(errno));
}
//释放
free(p);
p = NULL;
return 0;
}
使用 malloc、calloc、realloc 函数申请的空间,如果不想使用,需要 free 释放,如果不使用 free 释放,在程序结束后,也会由操作系统进行回收。
如果没有使用 free 释放,程序也不结束,所申请的空间既没有使用,也没有释放,也没有回收,我们将这种情况称为内存泄漏。
解决方法是:自己申请的,自己释放。自己不方便释放的,告诉别人进行释放。
题目1:请问运行Test 函数有哪些的错误?
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
void GetMemory(char* p)
{
p = (char*)malloc(100);
}
int main()
{
char* str = NULL;
GetMemory(str);
strcpy(str, "hello world");
printf(str);
return 0;
}
错误处:
解决方案一:
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
char* GetMemory( )
{
char* p = (char*)malloc(100);
return p;
}
int main()
{
char* str = NULL;
str = GetMemory( );
strcpy(str, "hello world");
printf(str);
free(str);
str = NULL;
return 0;
}
解决方案二:
void GetMemory(char** p)
{
*p = (char*)malloc(100);
}
int main()
{
char* str = NULL;
GetMemory(&str);
strcpy(str, "hello world");
printf(str);
free(str);
str = NULL;
return 0;
}
题目2:请问运行Test 函数有哪些的错误?
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
char* GetMemory(void)
{
char p[] = "hello world";
return p;
}
int main()
{
char* str = NULL;
str = GetMemory();
printf(str);
}
错误处:返回栈空间地址的问题
解决方案:
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
char* GetMemory()
{
static char p[] = "hello world";
return p;
}
int main()
{
char* str = NULL;
str = GetMemory();
printf(str);
}
题目3:请问运行Test 函数有哪些的错误?
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
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;
}
错误处:内存泄漏
解决方案:
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
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;
}
题目4:请问运行Test 函数有哪些的错误?
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
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;
}
错误处:栈空间的非法访问
解决方案:
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
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;
}
C/C++程序内存分配的几个区域:
有了这幅图,我们就可以更好的理解static关键字修饰局部变量的例子了:实际上普通的局部变量是在栈区分配空间的,栈区的特点是在上面创建的变量出了作用域就销毁。但是被static修饰的变量存放在数据段(静态区),数据段的特点是在上面创建的变量,直到程序结束才销毁所以生命周期变长。
也许你从来没有听说过柔性数组(flexible array)这个概念,但是它确实是存在的。C99 中,结构中的最后一个元素允许是未知大小的数组,这就叫做『柔性数组』成员。
举例说明:
struct S
{
int a;
char c;
int arr[]; //int arr[0]
};
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
struct S
{
int a;
char c;
int arr[]; //int arr[0]
};
int main()
{
printf("%d\n", sizeof(struct S));
struct S* ps = (struct S*)malloc(sizeof(struct S) + sizeof(int) * 10);
if (ps == NULL)
{
printf("%s\n", strerror(errno));
return 0;
}
int i = 0;
for (i = 0; i < 10; i++)
{
ps->arr[i] = i + 1;
}
for (i = 0; i < 10; i++)
{
printf("%d ", ps->arr[i]);
}
//调整数组arr大小
struct S* ptr = (struct S*)realloc(ps, sizeof(struct S) + sizeof(int) * 20);
if (ptr == NULL)
{
printf("%s\n", strerror(errno));
return 0;
}
else
{
ps = ptr;
}
//使用
//……
free(ps);
ps = NULL;
return 0;
}
使用结构体指针来进行模拟实现:
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
struct S
{
int a;
char c;
int* arr;
};
int main()
{
struct S* ps = (struct S*)malloc(sizeof(struct S));
if (ps == NULL)
{
perror("malloc\n");
return 0;
}
int* ptr = (int*)malloc(sizeof(int)*10);
if (ptr == NULL)
{
perror("malloc2\n");
return 0;
}
else
{
ps->arr = ptr;
}
//使用
int i = 0;
for (i = 0; i < 10; i++)
{
ps->arr[i] = i + 1;
}
//打印
for (i = 0; i < 10; i++)
{
printf("%d ", ps->arr[i]);
}
/*对arr进行扩容*/
ptr = (int*)realloc(ps->arr,sizeof(int) * 20);
if (ptr == NULL)
{
perror("realloc\n");
return 0;
}
else
{
ps->arr = ptr;
}
free(ptr);
ptr = NULL;
free(ps);
ps = NULL;
return 0;
}
使用柔性数组和结构体指针都可以完成同样的功能,两者之间的对比:
malloc 一次,free 一次,容易维护空间,不容易出错。内存碎片就会减少,内存利用率就较高一些。
连续的内存有益于提高访问速度,也有益于减少内存碎片。但是 malloc 两次,free 两次,维护难度加大,容易出错。内存碎片就会增多,内存利用率就下降了。
由于内存碎片比较小,在日后被利用的可能性就比较小。