gpt4 book ai didi

c++ - “gameRunning”未在此范围内声明

转载 作者:太空宇宙 更新时间:2023-11-04 09:55:10 25 4
gpt4 key购买 nike

bool gamerunning = true;
while (gamerunning)
while (SDL_PollEvent(&event))
if (event.type == SDL_QUIT)
gameRunning = false;

这就是我正在做的,在第 5 行我得到了这个错误:

‘gameRunning’ was not declared in this scope

有人知道这个问题吗?

最佳答案

这将修复错误:

bool gamerunning = true; 

while (gamerunning)
{
while (SDL_PollEvent(&event))
{
if (event.type == SDL_QUIT)
{
gamerunning = false; // <--- fixed spelling
}
}
}

编译器不需要大括号。但是,如果您有多个控制流语句,它会特别提高可读性。唯一的 buggamerunning 中的大写 R。

关于c++ - “gameRunning”未在此范围内声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5894939/

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