标签: oop inheritance interface
如果我正在编写一个继承自另一个实现接口的类,那么我应该在子代中实现这个接口吗?
class FatherClass implements MyInterface { ... } public class ChildClass extends FatherClass { // Should I implement MyInterface here? ... }
答案 0 :(得分:1)