将 C 中的动态 char 指针数组的最后一个值设置为 NULL 以终止 while 循环?

发布于 2025-01-11 06:47:27 字数 807 浏览 0 评论 0原文

我根据下面的代码有几个问题。

  1. 这是在这个动态 char 指针数组末尾设置 NULL 标记值的正确方法吗?如果不是我能做什么?
  2. 由于我将 malloced 内存设置为 NULL,下面的代码是否会导致内存泄漏?

我的一般问题是。

  1. 我可以做什么,以便我可以拥有一个最后一个值为 NULL 的动态字符指针数组,这样我就可以在此时停止循环,而不需要保留动态字符指针数组中有多少元素的计数。
#include <stdio.h>
#include <stdlib.h>
int main()
{
    int i = 0;
    char **array_strings = NULL;
    array_strings = malloc(sizeof(char *) * 2);
    array_strings[0] = malloc(sizeof(char) * 5);
    strcpy(array_strings[0],"test");
    array_strings[1]=NULL;
    while (array_strings[i] != NULL)
    {
        printf("array_strings[%d]: %s", i, array_strings[i]);
        i++;
    }
    free(array_strings[0]);
    free(array_strings[1]);
    free(array_strings);
    return 0;
}

I have a few questions based off the code below.

  1. Would this be the correct way to have a sentinel value of NULL at the end of this dynamic array of char pointers? If not what could I do?
  2. Will the code below cause a memory leak because I am setting malloced memory to NULL?

My general question would be.

  1. What could I possibly do so that I can have a dynamic array of character pointers with the last value to be NULL so I can stop the loop at that point without keeping a count of how many elements in the dynamic array of character pointers.
#include <stdio.h>
#include <stdlib.h>
int main()
{
    int i = 0;
    char **array_strings = NULL;
    array_strings = malloc(sizeof(char *) * 2);
    array_strings[0] = malloc(sizeof(char) * 5);
    strcpy(array_strings[0],"test");
    array_strings[1]=NULL;
    while (array_strings[i] != NULL)
    {
        printf("array_strings[%d]: %s", i, array_strings[i]);
        i++;
    }
    free(array_strings[0]);
    free(array_strings[1]);
    free(array_strings);
    return 0;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遇到 2025-01-18 06:47:27

这是否是在此动态 char 指针数组末尾设置 NULL 标记值的正确方法?如果不是我能做什么?

这是正确的。您有一个 char 指针的动态数组,最后一个指针被设置为 NULL。那里没有错误。

下面的代码是否会导致内存泄漏,因为我将 malloced 内存设置为 NULL

您将 NULL 存储在 malloced 内存中,而不是将任何对内存的引用设置为 NULL,所以不存在内存泄漏。 malloc 返回的所有指针都是free的。

Would this be the correct way to have a sentinel value of NULL at the end of this dynamic array of char pointers? If not what could I do?

This is correct. You have an dynamic array of char pointers, with the last pointer being set to NULL. There is no mistake there.

Will the code below cause a memory leak because I am setting malloced memory to NULL

You are storing NULL in malloced memory, not setting any reference to the memory to NULL, so there is no memory leak. All pointers returned by malloc are freed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文