简单的引用变量赋值导致对象的全局指针中的段错误?

时间:2012-07-22 00:44:00

标签: c++ vector segmentation-fault global-variables pass-by-reference

我的.cpp文件的第15行出现了段错误。我不知道为什么。各种代码片段: explosionhandler.h:

    class explosionhandler {
        public:
    struct explosion {
    ...
    };
    vector<struct explosion> explosions;
    struct explosion_type {
    ...
    };
    vector<struct explosion_type> type;
    int num_types;

    explosionhandler();
    ~explosionhandler();
    void registerexplosion(int& ttype,ALLEGRO_BITMAP*& b,int seq, float a, float m,float e);

    void createexplosion(int ttype,float x,float y);
    void drawexplosions(ALLEGRO_BITMAP* screen);

    void gettype(explosion_type& a,ALLEGRO_BITMAP*& b,int& nseq, float& aa, float& ee, float& mm);


        };#endif 

explosionhandler.cpp:

    explosionhandler::explosionhandler()
    {
        num_types=0;
    }
    void explosionhandler::registerexplosion(int& ttype,ALLEGRO_BITMAP*& b,int seq, float a, float m,float e)
    {
        explosion_type n;
        ....
        ttype = num_types;     /*********** right here *******************/
        num_types++;
        type.push_back(n);
    }

explosionhandler作为指向对象火箭的指针传递:

rocket.h:

...
class explosionhandler;
class rocket {
public:
        ...
        void setrocket(ALLEGRO_BITMAP*& a,ALLEGRO_BITMAP*& b, explosionhandler*& h);
        ...
        int exptype;
        ...
}; #endif

rocket.cpp:

rocket::rocket()
{
        ...
        exptype=-1;
}
void rocket::setrocket(ALLEGRO_BITMAP*& a,ALLEGRO_BITMAP*& b, explosionhandler*& h)
{
    handler = h;
    area.sethitboundaries(a);
    fprintf(stdout,"setrocket, # of rockets in vector: %i\n",(int)rockets.size());
h->registerexplosion(exptype,b,3,(float)al_get_bitmap_width(b),(float)0,(float)-18); //called function
}

最后是main.cpp(缩写):

#include "rocket.h"
#include "explosionhandler.h"
#include <allegro5/allegro.h>
#include <allegro5/allegro_image.h>
#include <stdio.h>
#include <cstdlib>
#define PI 3.14159265
...
rocket rock(bullet_speed+2,width,height);
explosionhandler *handler;
...
int setup()
{
        ...
        rock.setrocket(rk,exp,handler);
        rock.setlimit(5);
        al_set_target_bitmap(al_get_backbuffer(display));
        ...
}
...

好的,现在问题很明显,问题是处理程序未初始化。哎呦。

当然,explosionhandler是main.cpp中的指针,rocket是main.cpp中声明的对象,都是全局的。

祝福我的小菜鸟心,我不知道我做了什么。

1 个答案:

答案 0 :(得分:3)

我的通灵感告诉我你用{NULL}指针调用rocket::setrocket作为参数h(或者更具体地说,是对NULL指针的引用),然后你正在调用{ NULL指针上的{1}}。

不要那样做。传入一个有效的指针,或者分配一个新对象(确保以后正确删除它)。