java中类实现接口用implements关键词,接口继承接口用extends关键词,那么可以用implements吗
不可以,接口只能是implements,类只能是extends
不能,implement是实现的意思,就是要实现“所有的”抽象方法;继承是“间接拥有”,父类有了子类就可以用。所以