设计模式:Interface Inheritance (接口继承)和 Implementation Inheritance(实现继承)

设计模式:Interface Inheritance (接口继承)和 Implementation Inheritance(实现继承)

先阅读《具体类、虚类、抽象类(纯虚类)、接口》:http://blog.csdn.net/iw1210/article/details/33727491

接口继承(Interface Inheritance):基类是接口,根据需要实现接口里的抽象方法。
实现继承(Implementation Inheritance):基类是具体类或抽象类,继承了基类的实现部分,如果基类是抽象类,则根据需要实现基类的抽象方法。

 

你可能感兴趣的:(设计模式:Interface Inheritance (接口继承)和 Implementation Inheritance(实现继承))