传递一个结构为vector的结构

时间:2016-08-10 19:46:16

标签: c++ vector struct parameters parameter-passing

我有一个构建dll的类,作为单个解决方案实现。在它的头文件中,我有一个结构,其成员是vector。喜欢以下;

// dll.h

    struct ScanParam16
    {
        // int param
        int nChanDetX, nChanDetZ;
        int nViewPerRot, nViewPerSlice, 
            nChanDetXPerMod; 
        int nImgXY, nImgZ;  
        int nSlicePerProcess, n2Group;
        int FFTLen;

        // float param
        float pitch;
        float isoOffX, isoOffZ;
        float fov, dfov;
        float imgCentX, imgCentY, imgCentZ;
        float sdd, srad, drad;
        float dDetX, dDetZ, dDetU, dDetV, interModGapX, dDetSampleRes;

        std::vector<float> winArray;

        bool interleave;

        // enum
        bpInterpType16 iType;
    };

在调用此dll的代码中,向量winArrar的值如下:

// caller.cpp
    static ScanParam16 param;
    param.FFTLen = 2048;
    float* wArray = new float[param.FFTLen];
    GenKernCoef(wArray, param.FFTLen, kType, ParaDataFloat, aram.dDetSampleRes);
    std::vector<float> v(wArray, wArray+param.FFTLen);
    param.winArray = v;

现在一切都很好看。我可以看到param.winArray已正确设置正确的值。

但是,当我将param作为参数传递时,param.winArray的容量/长度变为0,就像我在dll中观察到的那样。

以下是param的传递方式:

//caller.cpp
    ReconAxial16 operator;
    operator.Init( param ) ;

上面是参数传递给dll之前的点。

以下是参数进入dll的位置:

// dll.cpp
    void ReconAxial16::Init(const ScanParam16& param )                      
    {
        /**************************************************************/
        //                  setup geometry and detv
        /**************************************************************/
        SetupGeometry(param);   

        // Allocate buffer for reconstructed image (on cpu side)
        _img = (float *)malloc(_nImgXY * _nImgXY * sizeof(float));

        ......

    }

当我介入时,我可以看到param.winArray长度为0,但所有其他参数看起来都很好。

我不会忍受它,并想知道如何正确传递矢量?非常感谢。

1 个答案:

答案 0 :(得分:0)

我实际上对这些问题没有答案,但我只是通过解决这个问题来展示我是如何做到的。

我基本上从结构中去掉了数组/向量,并将它作为第二个参数单独传递,如下所示:

 //caller.cpp
    ReconAxial16 operator;
float* wArray = new float[param.FFTLen];
    GenKernCoef(wArray, param.FFTLen, kType, ParaDataFloat, param.dDetSampleRes);
    operator.Init( param, wArray ) ;

当然在dll项目中,我做了类似的事情,让它接受一个数组作为附加参数:

// dll.h
LONG SetupGeometry( const ScanParam16 &param, float* wArray);   

有效。我介入,看到wArray正确地进入了dll。