我们已经掌握的内存开辟?式有:
int val = 20;//在栈空间上开辟四个字节
char arr[10] = {0};//在栈空间上开辟10个字节的连续空间
但是上述的开辟空间的?式有两个特点:
但是对于空间的需求,不仅仅是上述的情况。有时候我们需要的空间大小在程序运?的时候才能知道,那数组的编译时开辟空间的?式就不能满?了。
C语?引?了动态内存开辟,让程序员自己可以申请和释放空间,就?较灵活了。
C语言提供了?个动态内存开辟的函数:
void* malloc (size_t size);
这个函数向内存申请?块连续可用的空间,并返回指向这块空间的指针。
#include <stdio.h>
#include <stdlib.h>
int main()
{
//int arr[10]
int* p = (int*)malloc(10 * sizeof(int));
if (p == NULL)
{
perror("maclloc");
return 1;
}
//使用
int i = 0;
for (i = 0; i < 10; i++)
{
*(p + i) = i;
}
//打印
for (i = 0; i < 10; i++)
{
printf("%d ", *(p + i));
}
//这里没有释放空间,程序结束后会自动释放,但最好手动释放
return 0;
}
运行结果如图:
当申请的空间太大的时候会开辟失败,所以要对maclloc的返回值进行合理判断
#include <stdio.h>
#include <stdlib.h>
int main()
{
//int arr[10]
int* p = (int*)malloc(90000000000 * sizeof(int));
if (p == NULL)
{
perror("maclloc");
return 1;
}
return 0;
}
VS2022 X86环境下 运行结果如图
C语?提供了另外?个函数free,专?是?来做动态内存的释放和回收的,函数原型如下:
void free (void* ptr);
free函数?来释放动态开辟的内存。
malloc和free都声明在 stdlib.h 头?件中。
#include <stdio.h>
#include <stdlib.h>
int main()
{
//int arr[10]
int* p = (int*)malloc(10 * sizeof(int));
if (p == NULL)
{
perror("maclloc");
return 1;
}
//使用
int i = 0;
for (i = 0; i < 10; i++)
{
*(p + i) = i;
}
//打印
for (i = 0; i < 10; i++)
{
printf("%d ", *(p + i));
}
//释放空间
free(p);
p = NULL;
return 0;
}
运行结果如图:
C语?还提供了?个函数叫 calloc , calloc 函数也?来动态内存分配。原型如下:
void* calloc (size_t num, size_t size);
int main()
{
int* p = malloc(10, sizeof(int));
if (p == NULL)
{
perror("calloc");
return 1;
}
int i = 0;
for (i = 0; i < 10; i++)
{
printf("%x ", *(p + i));
}
free(p);
p = NULL;
return 0;
}
运行结果如图:
所以,如果malloc函数没有初始化打印结果是随机值
int main()
{
int* p = calloc(10, sizeof(int));
if (p == NULL)
{
perror("calloc");
return 1;
}
int i = 0;
for (i = 0; i < 10; i++)
{
printf("%d ", *(p + i));
}
free(p);
p = NULL;
return 0;
}
运行结果如图:
所以如果我们对申请的内存空间的内容要求初始化,那么可以很?便的使?calloc函数来完成任务。
函数原型如下:
void* realloc (void* ptr, size_t size);
情况1
在已经开辟好的空间后边,有足够的空间,直接进行扩大。
扩大空间后,直接返回旧的空间的起始地址!
情况2
在已经开辟好的的空间后面没有足够的空间,会堆空间上另找?个合适大小的连续空间来使用。
在这种情况下,realloc函数会在内存的堆区重新找一个空间(满足新的空间的大小需求的),同时会把旧的数据拷贝到新的空间,然后释放旧的空间,同时返回新起始空间的地址。
由于上述的两种情况,realloc函数的使用就要注意?些。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int* p = (int*)calloc(10, sizeof(int));
if (p == NULL)
{
perror("calloc");
return 1;
}
//打印
int i = 0;
for (i = 0; i < 10; i++)
{
printf("%d ", p[i]);
}
//空间不够,想扩大空间,20个字节
int* ptr = (int*)realloc(p, 20 * sizeof(int));
if (ptr != NULL)
{
p = ptr;
}
else
{
perror("realloc");
return 1;
}
free(p);
p = NULL;
return 0;
}
通过监视窗口可以观察到
#include <stdio.h>
#include <stdlib.h>
int main()
{
int* p = (int*)calloc(10, sizeof(int));
if (p == NULL)
{
perror("calloc");
return 1;
}
//打印
int i = 0;
for (i = 0; i < 10; i++)
{
printf("%d ", p[i]);
}
//假如要扩大的空间比较大
int* ptr = realloc(p, 100 * sizeof(int));
if (ptr != NULL)
{
p = ptr;
}
else
{
perror("realloc");
return 1;
}
free(p);
p = NULL;
return 0;
}
通过监视窗口可以观察到
当realloc函数的的第一个参数是NULL,那么他和malloc函数的功能是一样的。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int* p = (int*)realloc(NULL, 40);
if (p == NULL)
{
perror("realloc");
return 1;
}
int i = 0;
for (i = 0; i < 10; i++)
{
p[i] = i;
}
for (i = 0; i < 10; i++)
{
printf("%d ", p[i]);
}
free(p);
p = NULL;
}
运行结果如图:
void test()
{
int* p = (int*)malloc(INT_MAX / 4);
*p = 20;//如果p的值是NULL,就会有问题
free(p);
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
int* p = (int*)malloc(40);
if (p == NULL)
{
return 1;
}
int i = 0;
for (i = 0; i <= 10; i++)
{
*(p + i) = i;//当循环到11次时就越界访问了
}
//...
free(p);
p = NULL;
return 0;
}
运行结果如图:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a = 10;
int* p = (int*)malloc(40);
if (p == NULL)
{
return 1;
}
//使用
//...
p = &a;
free(p);//p指向的空间就不是堆区的空间
p = NULL;
return 0;
}
运行结果如图:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int* p = (int*)malloc(40);
if (p == NULL)
{
return 1;
}
//使用
p++;
//释放
free(p);
p = NULL;
return 0;
}
运行结果如图:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int* p = (int*)malloc(40);
if (p == NULL)
{
perror("malloc");
return 1;
}
//使用
//...
//释放
free(p);
free(p);
p = NULL;
return 0;
}
运行结果如图:
#include <stdio.h>
void test()
{
int* p = (int*)malloc(100);
if (NULL != p)
{
*p = 20;
}
}
int main()
{
test();
while (1);
return 0;
}
忘记释放不再使?的动态开辟的空间会造成内存泄漏。
切记:动态开辟的空间?定要释放,并且正确释放。
#include <stdio.h>
#include <stdlib.h>
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();
}
通过调试窗口可以看到:
因为函数在传参的时候形参是实参的一份临时拷贝,所以这里只是把str的值传给p,p的改变并不会影响str,当出了GetMemory函数后str的值还是NULL,这时候在把字符串"hello world"拷贝给str时,就会对空指针进行解引用,而出现错误
那这个printf有问题吗?
#include <stdio.h>
int main()
{
char arr[] = "abcdef";
printf("%s\n", arr);
printf("abcdef\n");
printf(arr);
return 0;
}
运行结果如图:
可以看到这些写法都没有什么问题,这是因为常量字符串在使用的时候传递的首字符的地址,数组名也是首元素的地址,所以这样写是没问题的。
如果要修改的话,这个代码可以用二级指针把str的地址作为函数的参数传过去
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void GetMemory(char** p)
{
*p = (char*)malloc(100);
}
void Test(void)
{
char* str = NULL;
GetMemory(&str);
strcpy(str, "hello world");
printf(str);
free(str);
str = NULL;
}
int main()
{
Test();
return 0;
}
运行结果如图:
也可以把指向动态分配的内存的指针p作为返回值,传给str也能实现。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* GetMemory()
{
char* p = (char*)malloc(100);
return p;
}
void Test(void)
{
char* str = NULL;
str = GetMemory();
strcpy(str, "hello world");
printf(str);
free(str);
str = NULL;
}
int main()
{
Test();
}
运行结果如图:
#include <stdio.h>
#include <stdlib.h>
char* GetMemory(void)
{
char p[] = "hello world";
return p;
}
void Test(void)
{
char* str = NULL;
str = GetMemory();
printf(str);
}
int main()
{
Test();
return 0;
}
运行结果如图:
这里为什么打印的是乱码呢?
这里p数组是在GetMemory函数里面定义的,所以它的作用域只在GetMemory函数里面有效,但GetMemory函数运行结束,p数组就被销毁的,这时候虽然把p,也就是数组首元素的地址返回了,但是str虽然能找到这块空间,但是没有使用权限了,这时候str就是野指针。
这是一个典型的返回栈空间的地址的问题。
#include <stdio.h>
#include <stdlib.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;
}
运行结果如图:
这里运行结果没有什么问题,但是这个代码没有释放动态开辟的内存,这里不会出问题是因为在程序结束,编译器会自动把空间释放,但是最好要手动释放空间。
#include <stdio.h>
#include <stdlib.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;
}
#include <stdio.h>
#include <stdlib.h>
void Test(void)
{
char* str = (char*)malloc(100);
strcpy(str, "hello");
free(str);
//str是野指针
if (str != NULL)
{
strcpy(str, "world");//非法访问
printf(str);
}
}
int main()
{
Test();
return 0;
}
这里虽然释放了str指向的空间,但是没有把str置为NULL,所以str这时是野指针,所以下面的代码就形成了非法访问的问题。
所以最好这样修改代码
#include <stdio.h>
#include <stdlib.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;
}
所以,大家一定要注意的些问题才能写出正确的代码。