Given a java class file, we can use hexdump or od to know its jdk version, But can we know the 64bit or 32bit information given a java class file?
I want to know if java class file has this field like version field?
If the bytecodes are agnostic of the word size, then when you od a class file, it's like:
0000000 feca beba 0000 3100 6300 0009 0019 0946
0000020 1900 4700 0009 0019 0948 1900 4900 0009
0000040 0019 094a 1900 4b00 000a 001a 074c 4d00
The first line is about 2*8 bytes, Why the second line address is 0000020?