在java中,内部类可以从内部类的外部类之外定义的抽象类继承吗?
在java中,内部类可以从内部类的外部类之外定义的抽象类继承吗?
抽象类也可以实现构造函数吗?
In java can inner classes inherit from an abstract class defined outside of the inner class's outer class?
Also can abstract classes implement constructors?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
两者皆是。
例如,在内部类中扩展 Swing Listener Adapter 类是很常见的,
为什么您不尝试一下呢?
Yes to both.
For example it is quite common to extend Swing Listener Adapter classes in inner classes
Why didn't you just try it?
你的意思是……
?
(对“super()”的多余调用只是说明性的,并不是必需的。)
Do you mean...
...?
(The superfluous calls to "super()" are merely illustrative, & are not necessary.)