gpt4 book ai didi

从函数 c 返回二维数组的正确方法

转载 作者:太空狗 更新时间:2023-10-29 14:59:24 25 4
gpt4 key购买 nike

我已经试过了,但是不行:

#include <stdio.h>

int * retArr()
{
int a[3][3] = {{1,2,3},{4,5,6},{7,8,9}};
return a;
}

int main()
{
int a[3][3] = retArr();
return 0;
}

我收到这些错误:

Error 3 error C2075: 'a' : array initialization needs curly braces
4 IntelliSense: return value type does not match the function type

我做错了什么?

最佳答案

结构是一种方法:

struct t_thing { int a[3][3]; };

然后按值返回结构。

完整示例:

struct t_thing {
int a[3][3];
};

struct t_thing retArr() {
struct t_thing thing = {
{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9}
}
};

return thing;
}

int main(int argc, const char* argv[]) {
struct t_thing thing = retArr();
...
return 0;
}

您面临的典型问题是 int a[3][3] = {{1,2,3},{4,5,6},{7,8,9}}; 在你的例子中指的是函数返回后回收的内存。这意味着您的调用者阅读(未定义的行为)是不安全的。

其他方法涉及将数组(调用者拥有)作为参数传递给函数,或创建新分配(例如使用 malloc)。该结构很好,因为它可以消除许多陷阱,但它并不适用于所有场景。当结构的大小不是常量或非常大时,您应避免按值使用结构。

关于从函数 c 返回二维数组的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13390541/

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