1

我正在谈论的类型显示在第 3 页:http: //dl.dropbox.com/u/13100941/C%2B%2B11.pdf

int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t

我正在使用 Visual Studio 2012。如果 GNU/Mingw 不同,还包括如何在这些编译器上使用它们。

4

2 回答 2

5

您需要包括<cstdint>. 它适用于任何符合C++11C99的编译器。

对于那些<cstdint>不可用或损坏的编译器,有Boost.Integer

于 2012-12-31T07:55:57.407 回答
2

从 2010 版开始,您可以简单地使用#include <cstdint>MSVC 中的 which。

于 2012-12-31T08:00:20.927 回答