gpt4 book ai didi

c++ - 如何修复此错误访问冲突读取位置 0x00000008

转载 作者:太空狗 更新时间:2023-10-29 23:36:18 26 4
gpt4 key购买 nike

<分区>

Only time for one more.exe 中 0x00814477 处的第一次机会异常:0xC0000005:访问冲突读取位置 0x00000008。Only time for one more.exe 中 0x00814477 处的未处理异常:0xC0000005:访问冲突读取位置 0x00000008。

//我相信这与 NULL 和操作系统有关,但我不确定如何解决这个问题

GameObject::GameObject()
{
sprite = NULL;
pos.x = 0; pos.y = 0;
vel.x = 0; vel.y = 0;

framenum = 0;
numframes = 0;
}

GameObject::~GameObject()
{
if ( sprite != NULL )
SDL_FreeSurface( sprite );
}

void GameObject::LoadImage(std::string filename)
{
sprite = IMG_Load( filename.c_str() );
//clip.x = 0;
//clip.y = 0;
clip.w = sprite->w; //It breaks here
clip.h = sprite->h; // and here
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com