-1

当我在 Visual Studio 2008 的发布配置中构建解决方案时,我在使用 c++ 向量时遇到问题。代码在调试配置中运行良好。我在网上搜索并没有找到解决我遇到的问题的解决方案。

这是我的代码的解释。我已经定义了一个类如下。此类存储平面的一些参数,包括其在空间中的位置等。

class PIVPlaneConfig{

public:
int update(){                       

    // Create the frame list for the PIV plane.
    for ( int   i = ListStart ;
                i <= ListEnd;
                i = i + ListStep){  
        FramesList.push_back(i);            
    }

    return 0;
};  

~PIVPlaneConfig(){
    DirRaw          = "";
    DirProcessed    = "";
    FnamePreVel     = "";

    // Reset frames list
    FramesList.clear();
};

std::string DirRaw;
std::string DirProcessed;
std::string FnamePreVel;
double pivScaleFactor;
double pivUnitFactorXY;
double pivUnitFactorVxVy;
Point2D planeOriginLocal;
Point3D planeOriginGlobal;
Point3D planeNormal;

bool CS;
int OutOfPlaneVelocity;

// Image Processing Configuration.
std::string FnamePreRawImage;
std::string FnameMaskImage;
int ElemShape;
int ElemShapeCols;
int ElemShapeRows;
Point2D ElemShapeAnchor;     
int pivResolutionHorizontal;
int pivResolutionVertical;

// File listing.
int ListStart;
int ListStep;
int ListEnd;
std::vector < int > FramesList;
int nPlanes;

};

我有一个函数可以配置 12 个不同的 PlaneConfigs:

int PlaneConfigInit( int FileIndexStart, int FileIndexStep, int FileIndexEnd, vector < PIVPlaneConfig >& Planes )

每个 PlaneConfig 将在函数 PlaneConfigInit 中进行如下初始化。为简单起见,我只带了PLANE01的初始化。

double CatiaScalingFactor = 3.8 / 84.839;

PIVPlaneConfig Plane;   

// PLANE01
pivPlane.DirRaw = "Y:\\Rectangular\\Sagittal_01_001";
pivPlane.DirProcessed = "Y:\\Rectangular\\Sagittal_01_001\\Processed";
pivPlane.FnamePreVel = "Sagittal_01_";
pivPlane.FnamePreRawImage = "Sagittal_01_";
pivPlane.OutOfPlaneVelocity = FR3D_MISSING_OUT_OF_PLANE_W;

//  File list.
pivPlane.ListStart = FileIndexStart;
pivPlane.ListStep = FileIndexStep;
pivPlane.ListEnd = FileIndexEnd;

pivPlane.planeOriginLocal.x = 0;
pivPlane.planeOriginLocal.y = 0;

pivPlane.planeOriginGlobal.x = -39.206  * CatiaScalingFactor;
pivPlane.planeOriginGlobal.y = 100.0    * CatiaScalingFactor;
pivPlane.planeOriginGlobal.z = -52.316  * CatiaScalingFactor;

//  Plane unit normal vector.
pivPlane.planeNormal.x = 0;
pivPlane.planeNormal.y = 0;
pivPlane.planeNormal.z = 1.0;   

pivPlane.CS = FR3D_CS_RECT;
pivPlane.update();  
pivPlanes.push_back( pivPlane );    
pivPlane.~PIVPlaneConfig(); 

我完全将上面的代码用于第二个平面并继续执行此操作,直到所有 12 个平面(PLANE01、PLANE02、...、PLANE12)都在函数 PlaneConfigInit 中初始化。这在调试中非常有效,但在发布时无效。PLANE01 的初始化是在没有崩溃的情况下完成的,但是当涉及到 PLANE02 时,它会在我使用 push_back() 函数的类的 update() 函数处崩溃。

我希望我已经很好地解释了我的问题。如果需要更多信息,请告诉我。

如果有任何帮助,我将不胜感激。

艾哈迈德

4

1 回答 1

1

仅在发布模式下发生的崩溃几乎总是由于未初始化的内存。

调用 PLANE02 的函数时,FileIndexStart、FileIndexStep 和 FilIndexEnd 设置为什么?另外,你能检查一下在崩溃之前实际调用了多少次 push_back 吗?(例如通过使用std::cout<<(i - ListStart)<<std::endl;内部循环)

于 2012-11-15T08:45:20.500 回答