相信大家对于java接口应该都不会陌生,下面给大家带来的也是一个java接口的实例,一起来看看吧。
java接口实例
首先的话,我们先在eclipse当中建立一个java项目,命名为Interface-example。
之后,在项目的下面建名为test的包。
之后按照下面的步骤进行。
创建接口类Define文件,在项目上右键- New-Interface-输入接口名Define-finsh。
在接口当中编写代码:
public interface Define { final int a = 45; final int b = 55; //此处仅定义函数方法 public void abc(); }
创建继承Define接口的Test1类。
编写代码:
public class Test1 implements Define { //此处实现接口函数方法的具体功能 public void abc() { System.out.println("Connection of test1 is OK!"); } }
创建继承Define接口的Test2类。
编写代码:
public class Test2 implements Define { //此处实现接口函数方法的具体功能 public void abc() { System.out.println("Connection of test2 is OK!"); } public static void main(String[] args) { Test1 c = new Test1(); Test2 d = new Test2(); //相同接口,不同实现方法 c.abc(); d.abc(); System.out.println(a); System.out.println(b); System.out.println(a + b); } }
项目结构如下所示:
下面是运行结果:
从这里的话我们能够看出,java接口实现了多继承的功能。
对于java接口实例就给大家分享到这里啦,更多java实例,请继续来奇Q工具网进行了解吧。
推荐阅读: