gpt4 book ai didi

c - 无法释放 C 指针

转载 作者:太空宇宙 更新时间:2023-11-04 05:53:47 24 4
gpt4 key购买 nike

过去几周我一直在 Linux Mint 中学习 C。但是,我切换到 OSX 并测试了这段代码:

#include <stdio.h>
#include <stdlib.h>


int main()
{
int *arr = calloc(10, sizeof(int));
if(arr == NULL)
printf("arr is null");

for(int i = 0; i < 10; i++, arr++){
printf("%d \n", *arr);
}


free(arr);

return 0;

}

这应该可以打印 10 个零,但它不会释放 arr。

这是输出:

0 
0
0
0
0
0
0
0
0
0
a.out(532,0x7fff72606300) malloc: *** error for object 0x7ff060c04b48: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
Abort trap: 6

我不明白如何访问未分配的内存。如果没有分配 arr,输出不应该是“arr is null”吗?

最佳答案

您的程序递增 arr 十次。您传递给 free 的指针与您从 calloc 收到的指针不同。您需要传递原始地址,预递增。

关于c - 无法释放 C 指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32619497/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com