码迷,mamicode.com
首页 > 其他好文 > 详细

实现接口使用

时间:2017-06-28 23:06:19      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:使用   int   ace   sys   pack   system   方法   abstract   rgs   

实现接口使用

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接口的方法

实现接口使用

标签:使用   int   ace   sys   pack   system   方法   abstract   rgs   

原文地址:http://www.cnblogs.com/fklin/p/7091621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!