Big-Endian and Little-Endian

字节排序 含义
Big-Endian 一个Word中的高位的Byte放在内存中这个Word区域的低地址处。
Little-Endian 一个Word中的低位的Byte放在内存中这个Word区域的低地址处。
一个例子:
如果我们将0x01020304写入到以0x0000开始的内存中,则结果为
        big-endian     little-endian
0x0000     0x01              0x04
0x0001     0x02              0x03
0x0002     0x03              0x02
0x0003     0x04              0x01

---------------------------------------
Intel的机器(X86平台)一般采用小端
IBM, Motorola(Power PC), Sun的机器一般采用大端
有的CPU即能工作于小端, 又能工作于大端, 比如ARM, Alpha,摩托罗拉的PowerPC。








你可能感兴趣的:(C++,motorola,byte,ibm,工作,sun,平台)