gpt4 book ai didi

C++如何将未初始化的指针传递给函数

转载 作者:行者123 更新时间:2023-11-28 00:18:39 24 4
gpt4 key购买 nike

// I need to download data from the (json-format) file net_f:
std::ifstream net_f("filename", std::ios::in | std::ios::binary);
// to a square int array *net of size n:
int n;
int * net;
load_net(net_f, &n, net);

// The size is initially unknown, so I want to do it in the procedure:
void load_net(std::ifstream& f, int *n, int *net)
{
int size; // # of rows (or columns, it's square) in the array
int net_size; // the array size in bytes
/*
some code here to process data from file
*/
// Returning values:
*n = size;
// Only now I am able to allocate memory:
*net = (int *)malloc(net_size);
/*
and do more code to set values
*/
}

现在:编译器警告我“变量“net”在设置其值之前已被使用”。确实如此,因为我没有足够的信息。它也会在运行时弹出,我只是忽略它。我应该如何修改我的代码以使其更优雅?(顺便说一句,它必须是一个数组,而不是一个 vector ;然后我将它复制到一个 CUDA 设备)。

最佳答案

由于您试图在被调用函数中修改 net,因此您需要传递 net by reference (因为你使用的是 C++)。此外,这也是 n 的首选:

void load_net(std::ifstream& f, int &n, int *&net)
{
// ...

/* Set output args */
n = size;
net = (int*)malloc(net_size);
}

C 方法是传递一个双指针(并且转换 malloc 的结果!):

void load_net(FILE* f, int *n, int **net)
{
// ...

/* Set output args */
*n = size;
*net = malloc(net_size);
}

您似乎混合编写了 C 和 C++ 代码。不要这样做。选择一个,并按预期使用其功能。

关于C++如何将未初始化的指针传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28690526/

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