第三章 断言第一节 简单的断言断言让程序的进程中断,方便程序员发现在哪里发生了问题。
1234AGameBase * GameBase = nullptr;check(false);check(GameBase);//断言给false或者给
2022-12-27