- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
Java 在其虚拟机中使用什么字节序?我记得在某处读到它取决于它运行的物理机器,然后在我读过的其他地方我相信它总是大端。哪个是正确的?
最佳答案
class
中的多字节数据文件以大端方式存储。
来自 The Java Virtual Machine Specification, Java SE 7 Edition , Chapter 4: The class
File Format :
A class file consists of a stream of 8-bit bytes. All 16-bit, 32-bit, and 64-bit quantities are constructed by reading in two, four, and eight consecutive 8-bit bytes, respectively. Multibyte data items are always stored in big-endian order, where the high bytes come first.
此外,如果字节码指令中的操作数跨越多个字节,它也是大端的。
来自 The Java Virtual Machine Specification, Java SE 7 Edition , Section 2.11: Instruction Set Summary :
If an operand is more than one byte in size, then it is stored in big-endian order-high-order byte first. For example, an unsigned 16-bit index into the local variables is stored as two unsigned bytes,
byte1
andbyte2
, such that its value is(byte1 << 8) | byte2
.
所以是的,我认为可以说Java虚拟机使用大端序。
关于Java 虚拟机的字节序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/981549/
序 大家好呀,我是summo,这次来写写我在上班空闲(摸鱼)的时候做的一个小网站的事。去年阿里云不是推出了个活动嘛,2核2G的云服务器一年只要99块钱,懂行的人应该知道这个价格在业界已经是非常良心了
我尝试根据给定的级别顺序(BFS 顺序)构造 BST。我知道这是可能的,但我不知道我该怎么写。问题是我必须使用 BFS 序列。所以,我不能在这里使用递归,我必须迭代地编写我的程序......我发现这有
我是一名优秀的程序员,十分优秀!