字 word 字节 byte 位 bit 字长是指字的长度 1字=2字节(1 word = 2 byte) 1字节=8位(1 byte = 8bit) 一个字的字长为16 一个字节的字长是8 bps 是 bits per second 的简称.一般数据机及网络通讯的传输速率都是以「bps」为单位.如56Kbps.100.0Mbps 等等. Bps即是Byte per second 的简称.而电脑一般都以Bps 显示速度,如1Mbps 大约等同 128 KBps. bit 电脑记忆体中最小的单位,…
字 word 字节 byte 位 bit 字长是指字的长度 1字=2字节(1 word = 2 byte) 1字节=8位(1 byte = 8bit) 一个字的字长为16 一个字节的字长是8 bps 是 bits per second 的简称.一般数据机及网络通讯的传输速率都是以「bps」为单位.如56Kbps.100.0Mbps 等等. Bps即是Byte per second 的简称.而电脑一般都以Bps 显示速度,如1Mbps 大约等同 128 KBps. bit 电脑记忆体中最小的单位…
char -128 ~ +127 short -32767 ~ + 32768 unsigned short 0 ~ 65536 int -2147483648 ~ +2147483647 unsigned int 0 ~ 4294967295 long == intlong long -9223372036854775808 ~ +9223372036854775807 double 1.7 * 10^308 unsigned int 0-4294967295 long long的最大值:92…
32位平台 char 1个字节8位 short 2个字节16位 int 4个字节32位 long 4个字节 long long 8个字节 指针 4个字节 64位平台 char 1个字节 short 2个字节 int 4个字节 long 8个字节 long long 8个字节 指针 8个字节 范围 char -128 ~ +127 (1 Byte)short -32767 ~ + 32768 (2 Bytes)unsigned short 0 ~ 65536 (2 Bytes)int - ~ +2…