前言:
今天看官们对“java接口案例”大体比较重视,兄弟们都需要分析一些“java接口案例”的相关资讯。那么小编也在网上网罗了一些有关“java接口案例””的相关资讯,希望你们能喜欢,同学们一起来学习一下吧!2.Abstract类实现接口
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
马克-to-win:如果实现某接口的类是abstract类,则它可以不实现该接口所有的方法。但其非abstract的子类中必须拥有所有抽象方法的实在的方法体;(当然它abstract爹的也算作是它的)
If a class implements an interface, it must implement all of its methods in the interface, otherwise, this class must be an abstract class. if it is an abstract class, it can leave some methods in the interface unimplemented.refer to the following example.
例1.2---本章源码
interface OpenClose {
void open();
void close();
}
abstract class Door implements OpenClose {
public void close() {
System.out.println("旋转把手,拉!");
}
}
/*AdvancedDoorMark_to_win这个类不需要实现close()。因为它已经有close()。它的close()位置在它的超类"Door"。
AdvancedDoorMark_to_win does not need to implement close(), because it already has
close(), the only thing is that the position of its close() is inside its
super class "Door"
*/
篇幅有限更多请见扩展链接:
标签: #java接口案例