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.
我现在正在做一个在线课程,讲师说在 Java 中一个类的内存开销是 32 个字节,但一个内部类只有 16 个字节。为什么是这样?
详细信息是特定于 JVM 的。但是,给出的数字看起来不可信:内部类需要引用外部类的封闭实例,因此需要比顶级类更高的开销。