-1
INT32_MAX was not declared in this scope

对此有什么解决方案(C++ 中发生错误)?

4

1 回答 1

2

INT32_MAX中定义<stdint.h>。你需要:

#include <stdint.h>

在有问题的源文件中。

于 2013-01-08T08:33:44.797 回答