gpt4 book ai didi

c++ - 指针类变量从 muncion 返回 NULL

转载 作者:行者123 更新时间:2023-11-28 02:51:50 28 4
gpt4 key购买 nike

我正在开发一个 DLL(在 Visual Studio 2013 中)来读取 TIFF(卫星图像),使用 GDAL 库,并且在用数据取回我的变量时遇到问题 - 目前它是空的(返回 NULL)。

在我的 DLL 中,我在“RasterFuncs.h”中定义了我的函数,如下所示:

namespace RasterFuncs
{
// This class is exported from the RasterFuncs.dll
class MyRasterFuncs
{
public:
// Open a raster file
static RASTERFUNCS_API int Open(char* rname, GDALDataset *poDataset);
};
}

在我的 DLL cpp 中我有以下内容:

namespace RasterFuncs
{
int MyRasterFuncs::Open(char* rname, GDALDataset *poDataset)
{
poDataset = (GDALDataset *) GDALOpen(rname, GA_ReadOnly);

if (poDataset != NULL)
{
cout << "RasterXSize 1:" << poDataset->GetRasterXSize() << endl;
cout << "RasterYSize 1:" << poDataset->GetRasterYSize() << endl;
cout << "RasterCount 1:" << poDataset->GetRasterCount() << endl;
}
return 0;
}
}

此时我有了包含所有图像数据的 poDataset。

但是,我使用以下代码将此 DLL 从另一个 CPP 调用:

    rfileName = "C:/Image1.tif";

// Open raster satelitte image
GDALDataset *poDataset = NULL;
GDALAllRegister();
RasterFuncs::MyRasterFuncs::Open(rfileName, poDataset);

if (poDataset != NULL)
{
cout << "RasterXSize:" << poDataset->GetRasterXSize() << endl;
cout << "RasterYSize:" << poDataset->GetRasterYSize() << endl;
cout << "RasterCount:" << poDataset->GetRasterCount() << endl;
}

当我测试返回的 poDataset 时,显示 NULL。

有人可以帮助解决这个问题吗?

提前致谢并致以最诚挚的问候!

最佳答案

请记住,默认情况下,函数的参数是按值传递的,这意味着函数具有该值的拷贝。

当您在函数中分配给 poDataset 变量时,您只是在更改本地拷贝。调用函数不会看到此修改。您需要通过引用传递参数:

static RASTERFUNCS_API int Open(char* rname, GDALDataset*& poDataset);

关于c++ - 指针类变量从 muncion 返回 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22863581/

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