首页 > 代码库 > java 接口 继承 的有趣现象
java 接口 继承 的有趣现象
public class TestA { private String ta="我是类TestA"; public String fiall() {//System.out.println(this.ta);return ta; }}
上面第一个类,作为父类
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
public interface TestB { String ta = "我是接口TestB"; String tb = "我是接口interface"; public abstract String fiall(); }
第二类作为接口
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
public class Testinterface extends TestA implements TestB{ /** * @param args */ public static void main(String[] args) { System.out.println(new Testinterface().fiall()); System.out.println(ta); System.out.println(tb); } }
第三个类Testinterface.java继承TestA.java实现TestB.java
趣像:实现接口,必须要实现抽象方法,但是在Testinterface.java中并未实现,难道???再看TestA.java中已经有一个方法正好实现了TestB.java中的方法,所以才没报错.
由此我们可以得出一个类实现某个接口时,实现的方法并不定要写在本类中,也可以写在父类中!!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。