在c++中,sizeof()返回的是size_t类型的数据,size_t可以理解为unsigned int(或者unsigned long),作用是提高可移植性,这个类型在各个平台上都可以使用。
64位下
char 1字节
short int 2字节
int 4字节(unsigned int)
long 4字节(unsigned long)
long long 8字节(unsigned long long)
指针 统一8字节
标签:字节,int,unsigned,long,c++,类型,size From: https://www.cnblogs.com/ruoxingruocheng/p/17560975.html