What endianness does Java use in its virtual machine? I remember reading somewhere that it depends on the physical machine it's running on, and then other places I have read that it is always, I believe, big endian. Which is correct?
|
|
|
|
|
|
|
Multibyte data in the From The Java Virtual Machine Specification, Second Edition, Chapter 4: The
Furthermore, the operand in an bytecode instruction is also big-endian if it spans multiple bytes. From The Java Virtual Machine Specification, Second Edition, Secion 3.11: Instruction Set Summary:
So yes, I think it can be said that the Java Virtual Machine uses big-endian. |
|||
|
|
|
|
The actual working data stored in the running process will almost certainly match the endianess of the executing process. Generally file formats (including class files) will be in network order (big endian). It's generally difficult to tell what the machine is doing underneath, as it is abstracted away by the virtual machine. You can't cast a |
||
|
|
|
|
Why ask? It's an implementation detail, thus it can't be answered in general. |
||||
|
