Big-Edian 存储和 Little-Edian 存储

在 JVM 虚拟机规范中有对 class 字节内容的顺序的一句话,多字节数据项总是按照 Big-Endian 的顺序进行存储,刚开始不太明白,只是根据规范解析了一下,具体的java 代码:

1
2
3
4
5
6
7
8
9
10
11
12
13

public ClassReadCursor(String filePath, ClassParseInfo classParseInfo) {
try {
this.classParseInfo = classParseInfo;
byte[] bytes = Files.readAllBytes(Paths.get(filePath));
ByteBuffer byteBuffer = ByteBuffer.wrap(bytes).order(ByteOrder.BIG_ENDIAN);
this.dataInputStream = new DataInputStream(new ByteArrayInputStream(byteBuffer.array()));
} catch (IOException e) {
e.printStackTrace();
}

}

字节排序的方式分为两种: BIG_ENDIANLITTLE_ENDIAN,这两种有什么区别的? 看到 jdk 上面有官方的解释:

Constant denoting big-endian byte order. In this order, the bytes of a multibyte value are ordered from most significant to least significant.

翻译过来就是多字节的排序从重要性的高的到重要性低的顺序进行排序

看起来官方的解释非常的抽象,举一个简单的例子:

1
2
3
short int a = 0xABCD;
0xCD,0xAB //LITTLE_ENDIAN
0xAB,0xCD //BIG_ENDIAN

总结一个 BIG_ENDIAN 排序与书写方式一致,LITTLE_ENDIAN和书写方向相反。