实现接口使用
Posted Fu Kelin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现接口使用相关的知识,希望对你有一定的参考价值。
实现接口使用
package w0628; public class TestInterface { public static void main(String[] args) { X x = new X(); A a= x; B b =x; a.m1(); b.m2(); } } interface A{ public abstract void m1(); } interface B{ public abstract void m2(); } class X implements A,B{ public void m1(){ System.out.println("A接口的方法"); } public void m2(){ System.out.println("B接口的方法"); } }
输出结果
A接口的方法
B接口的方法
以上是关于实现接口使用的主要内容,如果未能解决你的问题,请参考以下文章