Java对象是如何构造的?

发布于 2024-10-25 04:26:40 字数 236 浏览 1 评论 0原文

如果我创建一个类,例如:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人海汹涌 2024-11-01 04:26:41

这取决于实际的虚拟机(供应商、版本)。没有关于虚拟机如何存储实例的详细规范。

Java 虚拟机不强制执行任何操作对象的特定内部结构。

This depends on the actual virtual machine (vendor, version). There's no detailed specification on how a VM should store the instance.

The Java virtual machine does not mandate any particular internal structure for objects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文