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

动态多态

时间:2015-10-22 21:13:20      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

public interface Ipower {
    public abstract void tigongdianyuan();
}

 动态多态:指系统A访问系统B的服务时,系统B可以通过多种实现来提供服务,而这一切对于A来说都是透明的

 

public class ACPower implements Ipower {

    
    public void tigongdianyuan() {
        System.out.println("适配器提供电源");

    }

}

 

 

public class Barry implements Ipower {


    public void tigongdianyuan() {
        System.out.println("电池提供电源");

    }

}

 

 

public class Computer {
    
    public void kaiJi(Ipower pow){
        pow.tigongdianyuan();
        System.out.println("开机了");
    }
    
}

 

 

public class Test {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Computer c = new Computer();
        ACPower ac = new ACPower();
        Barry ba = new Barry();
        c.kaiJi(ba);
    }

}

 

动态多态

标签:

原文地址:http://www.cnblogs.com/hnzyyTl/p/4896029.html

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