C++ 对象数组堆栈溢出



当我尝试创建一个"游戏对象"数组时,我得到一个堆栈溢出异常,知道可能是什么原因吗? 编辑:对于 1 的数组,它不会引发异常,我错了 (只创建一个"游戏对象"变量就可以了(

我知道我的代码很混乱,而且很糟糕,但我对 c++ 相当陌生,所以请原谅我的代码:(

这是我的主要.cpp:

int main()
{
using namespace std::literals::chrono_literals;
HWND myconsole = GetConsoleWindow();
HDC mydc = GetDC(myconsole);
bool loop;
loop = false;
std::chrono::steady_clock::time_point start;
std::chrono::steady_clock::time_point end;
std::chrono::duration<float> duration;
gameObject test(mydc, "test.dat");
gameObject objList[100];
test.posX = 200;
test.posY = 10;
std::cout << getCurrentId();
while (true)
{
start = std::chrono::high_resolution_clock::now();

if (GetKeyState(VK_DOWN) & 0x8000)
{
test.move(0, -3);       
}
if (GetKeyState(VK_UP) & 0x8000)
{
test.move(0, 3);
}
if (GetKeyState(VK_RIGHT) & 0x8000)
{
test.move(6, 0);
}
if (GetKeyState(VK_SPACE) & 0x8000)
{
gameObject shell(mydc, "shell.dat");
shell.type = 1;
shell.posX = test.posX + test.l;
shell.posY = test.posY + test.h;
objList[getCurrentId()] = shell;
}
if (loop == false)
{
for (int i = 0; i < 100; i++)
{
if (objList[i].type == 1)
{
objList[i].move(1, 0);
}
}
}
if (loop == false)
{
loop = true;
}
else
{
loop = false;
}
end = std::chrono::high_resolution_clock::now();
duration = end - start;
if (duration < 0.0333s)
{
std::this_thread::sleep_for(0.0333s - duration);
}

}
}

下面是"gameObject"类:

class gameObject
{
public:
gameObject(HDC currentDc, std::string dataFile);
gameObject();
~gameObject();
void clear();
void draw();
void move(int x, int y);
void loadSprite(std::string spriteName);
bool collide(gameObject);
unsigned short h = 1;
unsigned short l = 1;
int posX;
int posY;
unsigned short type;
COLORREF spriteData[256][256];
unsigned short id;


HDC dc;
};

您正在堆栈gameObject objList[100];上创建所有对象,并且每个对象中都有一个大数组COLORREF spriteData[256][256];。这就是您的堆栈溢出。

使用std::vector存储对象。

最新更新