Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
INT32_MAX was not declared in this scope
对此有什么解决方案(C++ 中发生错误)?
INT32_MAX中定义<stdint.h>。你需要:
INT32_MAX
<stdint.h>
#include <stdint.h>
在有问题的源文件中。