从函数改变值

发布于 2024-11-04 15:43:21 字数 710 浏览 0 评论 0原文

我想更改函数中的 2dim 字符数组。

我分配的空间就像

char **u;
u = new char * [ MAX_DEPTH ];
for (i=0; i<MAX_DEPTH; i++)
    u[ i ] = new char [ BUFFER_SIZE ];

该函数看起来像

rem(char ***arr, int max_length, char *url)
{
    int idx=0;
    char * p;
    int i;

    p = strtok (url,"/"); 

    while (p != NULL && idx < max_length)
    {

        for (  i=0; i<maxUrlSize-1 && p[i] != '\0'; i++)
            (*arr)[idx][i] = p[i];
        for (     ; i< maxUrlSize-1; i++)
            (*arr)[idx][i] = '\0';
    }
}

该函数将在我的主程序中使用一样。

rem( &u, MAX_LEN, url);

但离开函数后就没有任何内容了。有人可以解释我如何以这种方式使用指针吗?

I want to change a 2dim char array in a function.

I allocate the space like

char **u;
u = new char * [ MAX_DEPTH ];
for (i=0; i<MAX_DEPTH; i++)
    u[ i ] = new char [ BUFFER_SIZE ];

the function looks like

rem(char ***arr, int max_length, char *url)
{
    int idx=0;
    char * p;
    int i;

    p = strtok (url,"/"); 

    while (p != NULL && idx < max_length)
    {

        for (  i=0; i<maxUrlSize-1 && p[i] != '\0'; i++)
            (*arr)[idx][i] = p[i];
        for (     ; i< maxUrlSize-1; i++)
            (*arr)[idx][i] = '\0';
    }
}

the function will be used in my main program.

rem( &u, MAX_LEN, url);

but after leaving the function there is nothing in. Could someone explain me how to use pointers in this way?

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

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

发布评论

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

评论(1

夢归不見 2024-11-11 15:43:21

您需要将函数中对 tmp 的引用更改为 arr。您根本没有访问参数arr。另外,您在这里不需要 char ***,因为您没有更改分配给 u 的空间。相反,您应该具有参数 char **arr,您可以通过 arr[i][j] 访问该参数。然后您应该将 u 传递给 rem,而不是 &u

You need to change the reference to tmp in your function, to arr. You aren't accessing the parameter arr at all. Also, you do not need char *** here, since you aren't changing the space allocated to u. Instead, you should have parameter char **arr, which you access as arr[i][j]. And you should then pass u to rem, rather than &u.

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