c ++中构造函数中的分段错误

时间:2013-02-11 16:30:47

标签: c++ constructor segmentation-fault

所以我有cl_Page类:

class cl_Page{
    public:
    cl_Page(cl_LessonMoment *parent_param);
    cl_Page(cl_SoftRoot *parent_param);
    int parent_type;
    cl_LessonMoment *parent_lmoment;
    cl_SoftRoot *parent_softroot;

    char id[256];

    //<content>
    //Backgrounds.
    str_Color bgcolor;
    cl_Image bgimage;

    //Actual content
    vector<cl_Textbox> textboxes;
    vector<cl_Button> buttons;
    vector<cl_Image> images;
    //</content>

    cl_Textbox* AddTextbox();
    cl_Button* AddButton();
    cl_Image* AddImage(char *filename = nullptr);
};

和cl_Page构造函数:

cl_Page::cl_Page(cl_LessonMoment *parent_param) : bgimage(nullptr){ //here is the segfault
    parent_lmoment = parent_param;
    parent_type = 1;
    id[0] = '\0';
    SetColor(bgcolor, 0xffffffff);
}

cl_Page::cl_Page(cl_SoftRoot *parent_param): bgimage(nullptr){ // or here if i call this constructor
    /*parent_softroot = parent_param;
    parent_type = 2;
    id[0] = '\0';
    SetColor(bgcolor, 0xffffffff);*/
}

无论我如何调用构造函数,或者无论我调用哪一个(第二个都被注释掉;所以基本上是空的),全局,局部或动态,函数或者一个成员对象,我得到一个看似正确的cl_Page::cl_Page(cl_LessonMoment *parent_param) : bgimage(nullptr){行的分段错误。调用堆栈如下所示:

#0 77C460CB strcat() (C:\WINDOWS\system32\msvcrt.dll:??)
#1 0022F168 ?? () (??:??)
#2 00401905 cl_Page::cl_Page(this=0x22fbe8, parent_param=0x0) (F:\Scoala\C++\EduSoftViewer_Parser\sources\classes\soft_tree\page.cpp:10)
#3 00402B8A main() (F:\Scoala\C++\EduSoftViewer_Parser\sources\main.cpp:11)

在我写这篇文章之前的某些版本中,(完全相同的问题)调用堆栈上的#1位置,现在?? () (??:??)ntdll!RtlDosApplyFileIsolationRedirection_Ustr() (C:\WINDOWS\system32\ntdll.dll:??)

所以我的问题是:有人知道造成这种情况的原因吗?我真的需要让它发挥作用。

如果有任何不清楚的地方,请询问,我会提供更多信息。

编辑:澄清:我在Windows XP SP2下并使用gcc运行Code :: Blocks。

编辑2:cl_Image构造函数:

cl_Image::cl_Image(char *filename_param){
    if (filename == nullptr){
        filename[0] = '\0';
    }
    else{
        strcpy(filename, filename_param);
    }
    SetPosition(position, 0, 0);
    id[0] = '\0';
    visible = 1;
    z_index = 0;
}

此类不包含任何对象成员,但POD结构除外,position

编辑3:cl_Image类:

class cl_Image{
public:
    cl_Image(char* filename_param = nullptr);


    str_Position position;
    char filename[256];
    char id[256];
    bool visible;
    int z_index;
};

str_Position只是2个整数的结构。

2 个答案:

答案 0 :(得分:4)

很确定这是你的问题:

cl_Image::cl_Image(char *filename_param){
    if (filename == nullptr){  // <<==== filename??? try using the param.
        filename[0] = '\0';
    }

试试这个:

cl_Image::cl_Image(char *filename_param){
    if (filename_param == nullptr){
        filename[0] = '\0';
    }

答案 1 :(得分:0)

我猜测bgimage无法使用nullptr初始化。