gpt4 book ai didi

c - 使用堆内存调试c

转载 作者:行者123 更新时间:2023-11-30 19:20:54 25 4
gpt4 key购买 nike

我正在使用堆内存,我写了一个例子:

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

int main(int argc, char *argv[]){
FILE *fd;

//Alocate memory on the heap;
char *UserInput = malloc(20);
char *OutputFile = malloc(20);

if(argc < 2){
printf("Usage: %s <string to be written to /tmp/notes>\n", argv[0]);
exit(0);
}

//Copy data into the heap memory
strcpy(OutputFile, "/tmp/notes");
strcpy(UserInput, argv[1]);

//Print out some debug messages
printf("___DEBUG___\n");
printf("[*] UserInput @ %p: %s\n", UserInput, UserInput);
printf("[*] OutputFile @ %p: %s\n", OutputFile, OutputFile);
printf("[*] Distance between: %ld\n", UserInput - OutputFile);
printf("_________________\n\n");

//Writing the data out to the file
printf("Writing to \"%s\" to the end of %s...\n", UserInput, OutputFile);
fd = fopen(OutputFile, "a");
if (fd == NULL){
fprintf(stderr, "Error openning %s\n", OutputFile);
exit(1);
}

fprintf(fd, "%s\n", UserInput);
fclose(fd);

return 0;
}

我执行的是:./heap test输出为:

___DEBUG___
[*] UserInput @ 0x1a13010: test
[*] OutputFile @ 0x1a13030: /tmp/notes
[*] Distance between: -32
_________________

我认为“距离”发生了问题\\最大长度为argv[1] int 类型是整数“31”\\最大长度为argv[1] char 类型是“58”个字符\\例如:

 ./heap 123...01 => 31 integers
./heap qqq..qqq => 58 characters

之后我遇到了一个 Unresolved 错误......为什么之间的距离为-32?

最佳答案

这里没有任何问题。指针由 malloc() 函数分配,该函数可以并且确实为指针分配相当任意的值。正常的 malloc() 实现将保留几个字节来标记分配的缓冲区的长度,并利用空闲列表上现有的缓冲区大小。因此,如果您像您所做的那样分配两个缓冲区,则没有任何规定它们必须在堆空间中连续。事实上,他们不会。

我不知道你想在这里做什么,但是两个 malloc() 指针之间的“距离”永远不会是缓冲区的确切长度。

关于c - 使用堆内存调试c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20904282/

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