Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
变量的内存大小是否取决于 JVM?
是的。
例如,对象几乎可以肯定在 64 位 JVM 上比在 32 位 JVM 上消耗更多的内存。
但是,Java 规范固定了诸如 int(始终为 32 位)之类的原始类型的“逻辑大小”。