Java对象是如何构造的?
如果我创建一个类,例如:
public class Test{
int id;
String name;
}
现在,如果我必须使用该类,我们只需创建该类的一个实例,因为
Test testObj = new Test();
我想知道如何在系统中创建实际对象。 (在核心级别,对象的结构是什么。)
If I create a class like:
public class Test{
int id;
String name;
}
Now, if I have to use the class, we have to just create a instance of the class as
Test testObj = new Test();
I would like to know how the actual object is created in the system. (In core level, what will be the structure of the object.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于实际的虚拟机(供应商、版本)。没有关于虚拟机如何存储实例的详细规范。
This depends on the actual virtual machine (vendor, version). There's no detailed specification on how a VM should store the instance.