我可以有一个抽象类继承另一个抽象类吗? (java)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,当然你也不能实例化它。
Yes, and you cannot instantiate it either, of course.
是的,你可以。
如果您使用抽象类扩展一个类,并且没有定义或提供基类抽象方法的实现,那么扩展它的子类将自动变为抽象。
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.