gpt4 book ai didi

java - 子类对象的创建是否也会创建其父类(super class)的对象?

转载 作者:行者123 更新时间:2023-11-29 03:57:16 27 4
gpt4 key购买 nike

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

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

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

当你:

Box b = new Box();

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

最佳答案

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

不,它创建单个对象。这个单个对象代表一个 Box(因为这是 Rectangle 的子类型,所以这个对象也代表一个 Rectangle)。

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

关于java - 子类对象的创建是否也会创建其父类(super class)的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5634909/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com