16位,32位,64位下各種資料型別的長度大小
阿新 • • 發佈:2019-02-12
(1)16位平臺
char 1個位元組8位
short 2個位元組16位
int 2個位元組16位
long 4個位元組32位
指標 2個位元組16位
(2)32位平臺
char 1個位元組8位
short 2個位元組16位
int 4個位元組32位
long 4個位元組32位
long long 8個位元組64位
指標 4個位元組32位
(3)64位平臺
char 1個位元組
short 2個位元組
int 4個位元組
long 8個位元組(區別)
long long 8個位元組
指標 8個位元組(區別)
32位系統 64位系統 (單位Bytes)
char 1 1
short 2 2
int 4 4
指標 4 8
long 4 8
float 4 4
double 8 8