gpt4 book ai didi

c - 使用 C 字符串的内存泄漏

转载 作者:行者123 更新时间:2023-12-04 10:45:18 27 4
gpt4 key购买 nike

我正在尝试用 C 构建一个 str_replace 函数(以便学习 C)。为了让事情变得更简单,我决定创建两个辅助函数,其中一个具有以下原型(prototype):

char * str_shift_right(const char * string, char fill, int32_t n);

它接受一个字符串并在给定字符串的第 n 位置添加字符 fill。这是完整的代码:

// replace the nth char with 'fill' in 'string', 0-indexed
char * str_shift_right(const char * string, char fill, int32_t n) {
// +1 the null byte, +1 for the new char
int32_t new_size = (int32_t) strlen(string) + 2;
char * new_string = NULL;
new_string = calloc(new_size, sizeof(char));

new_string[new_size - 1] = '\0';
int32_t i = 0;
while (i < strlen(string) + 1) {
// insert replacement char if on the right position
if (i == n) {
new_string[i] = fill;

// if the replacement has been done, shift remaining chars to the right
} else if (i > n) {
new_string[i] = string[i - 1];

// this is the begining of the new string, same as the old one
} else {
new_string[i] = string[i];
}

i++;
}

return new_string;
}

我想确保此函数不会泄漏内存,所以我尝试执行以下代码:

int main(int argc, const char * argv[])
{
do {
char * new_str = str_shift_right("Hello world !", 'x', 4);
printf("%s", new_str);
free(new_str);
} while (1);

return 0;
}

然而,当使用事件监视器(一个 Mac OSX 应用程序,对于那些不熟悉的人来说,有点像 Windows 上的进程管理器)观察内存使用情况时,RAM 似乎被消耗得非常快,并且在以下情况下变得不可用程序停止执行。

这就是内存泄漏吗? 如果是这样,我做错了什么? free(new_str) 调用不是应该释放内存吗?

感谢您的帮助。

编辑 1:修复了 PaulR 发现的一个错误。问题依然存在。

最佳答案

it seems like RAM gets eaten up pretty fast and it does not become available when the program stops executing.

您正在查看哪些 RAM 使用情况?系统中的总 RAM 使用量?

如果是这样,您看到的可能是您的终端使用的内存 – 您的程序打印出的每个字符都将由终端存储在 RAM 中(尽管它可能会开始丢弃东西在一定限度内)。再试一次,但这一次,阻止输出显示在终端中:

./program > /dev/null

作为一般规则,无论您泄漏了多少内存,当您的程序终止时,它总是会自动释放。而且我无法在您的程序中发现任何漏洞。

关于c - 使用 C 字符串的内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16777210/

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