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.
如果我创建一个像这样的类:
public class Test{ int id; String name; }
现在,如果我必须使用该类,我们只需创建该类的一个实例
Test testObj = new Test();
我想知道实际对象是如何在系统中创建的。(在核心级别,对象的结构是什么。)
这取决于实际的虚拟机(供应商、版本)。没有关于VM 应如何存储实例的详细规范。
Java 虚拟机不要求对象有任何特定的内部结构。