Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
標準定義型
[go: Go Back, main page]

[ C++で開発 ]

標準定義型

C/C++言語において、標準で定義される型がいろいろあります。代表的なものは size_t 型です。

ビットサイズ固定整数

C99

C99規格で、ビットサイズが固定の整数型が定義されました。

<stdint.h>
int8_t
uint8_t
int16_t
uint16_t
int32_t
uint32_t
int64_t
uint64_t