创建子类对象是否也会创建其超类对象?

发布于 2024-10-31 18:45:07 字数 351 浏览 0 评论 0原文

这是我的意思的一个例子:

public class Rectangle
{
    private int length;
    private int breadth;
    .
    .
}

public class Box extends Rectangle
{
    private int height;
    .
    .
}

当您:

Box b = new Box();

它是否创建一个 Box 以及一个 Rectangle 对象,其中矩形不能直接访问,而只能通过 Box 对象访问。换句话说,它是否在内存中创建了两个对象?

Heres an example of what I mean:

public class Rectangle
{
    private int length;
    private int breadth;
    .
    .
}

public class Box extends Rectangle
{
    private int height;
    .
    .
}

When you:

Box b = new Box();

Does it create a Box as well as a Rectangle object, with the rectangle not directly accessible, but only accessible through the Box object. In other words, does it create two objects in memory?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

自此以后,行同陌路 2024-11-07 18:45:07

换句话说,它会在内存中创建两个对象吗?

不,它会创建一个对象。这个单个对象代表一个 Box(并且由于这是 Rectangle 的子类型,因此同一对象也代表一个 Rectangle)。

继承只是确保 Box 对象的接口是 Rectangle 接口的扩展。

In other words, does it create two objects in memory?

No, it creates a single object. This single object represents a Box (and since this is a subtype of Rectangle this same object represents a Rectangle as well).

The inheritance simply ensures that the interface of the Box object is an extension of the Rectangle interface.

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