32位和64位下字节长度

32位:

char  1字节

short 2字节

int     4字节

long   4字节

指针   4字节

64位:

char  1字节

short 2字节

int     4字节

long   8字节

指针   8字节

原文地址:https://www.cnblogs.com/xshang/p/6536336.html