JVM Anatomy Quark #23: Compressed References
https://shipilev.net/jvm/anatomy-quarks/23-compressed-references/ [shipilev.net]
2019-03-06 05:59
But does that mean the size of Java reference is the same as the machine pointer width? Not necessarily. Java objects are usually quite reference-heavy, and there is pressure for runtimes to employ the optimizations that make the references smaller. The most ubiquitous trick is to compress the references: make their representation smaller than the machine pointer width.
source: HN