Re: Constructor question (again)
JoeC wrote:
I have been trying to get this copy constructor to work. I don't know
why it crashes.
We don't know why it crashes either.
graphic::graphic(const graphic& gr){
ud = lr = 16;
gdata = gr.gdata; <-- This line crashes
It would seem that 'gr' is somehow invalid here. What does 'gdata'
contain? Is 'gr' OK here? How did you obtain this refernece?
BITMAP bitmap = {0,ud,lr,2,1,1};
bitmap.bmBits = &gdata[0];
hbitmap = CreateBitmapIndirect(&bitmap);
}
I am using the function like this:
if(play){
cgr = new graphic(play->gOut());
So, what's "play"? Is that pointer OK or is it also invalid?
Comparing it to zero is not necessarily enough to validate it. Who
creates it? Who fills (sets) it? Could it be that "play" has been
disposed of at some point before reaching this point?
You need to debug your program and make sure that when the program
gets to this point, 'play' is valid (points to a regular 'player'
object, still alive, with all fields still valid as well). We can't
do it for you.
return *cgr;
}
class player{
string name;
graphic gr;
void create();
public:
player();
graphic gOut(){return gr;}
void dummy(){MessageBox(NULL, "Dummy" , "Notice", MB_OK); }
};
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask