我可以有一个抽象类继承另一个抽象类吗? (java)

发布于 2024-12-08 10:06:09 字数 138 浏览 0 评论 0原文

public abstract class Two extends One
{
}

第一类定义为

public abstract class One
{
} 
public abstract class Two extends One
{
}

Class One is defined as

public abstract class One
{
} 

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

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

发布评论

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

评论(2

傾旎 2024-12-15 10:06:09

是的,当然你也不能实例化它。

Yes, and you cannot instantiate it either, of course.

<逆流佳人身旁 2024-12-15 10:06:09

是的,你可以。

如果您使用抽象类扩展一个类,并且没有定义或提供基类抽象方法的实现,那么扩展它的子类将自动变为抽象。

Yes, you can.

If you extend a class with an abstract class and do not define or provide the implementation for the base class abstract methods then the child class extending it would automatically become abstract.

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