夜光带你走进 Java 成神之路(十五)擅长的领域

夜光序言:

 

因为活着,所以我们应该感恩。感恩是一种宽容和豁达,是一种伟大的情操。世上的一切都值得我们感恩,我们才会生活得更加美好。

 

 

 

 

 

 

 

 

 

 

 

正文:

                           以道御术 / 以术识道

 

 

package 适配器模式.类适配器;

public class Phone {

    //充电
    public void charging(IVoltage5V iVoltage5V){

        if (iVoltage5V.output5V() == 5){
            System.out.println("电压为5V,可以充电~~");
        }else if (iVoltage5V.output5V() > 5){
            System.out.println("电压过高。。");
        }
    }

}

 

package 适配器模式.类适配器;

//这边我们来写一个客户端,运行一下
public class Client {
    public static void main(String[] args) {
        System.out.println("----------类适配器模式---------");

        Phone phone = new Phone();
        phone.charging(new VoltageAdapter());

    }
}

 

package 适配器模式.类适配器;

//适配器类
public class VoltageAdapter extends Voltage220V implements IVoltage5V{

    @Override
    public int output5V() {
        //获取到220v电压
        int srcV = output220V();
        int disV = srcV / 44; //夜光:转成5V

        return disV;
    }
}
package 适配器模式.类适配器;

//写一个接口
//适配接口
public interface IVoltage5V {

    //提供一个方法
    public int output5V();


}

 

package 适配器模式.类适配器;

//被适配的类
public class Voltage220V {

    //输出电压,夜光
    public int output220V(){
        int src = 220;
        System.out.println("电压=" + src + "伏");
        return src;
    }

}

 

package 适配器模式.对象适配器;

//适配器类 -- 对象适配器
public class VoltageAdapter implements IVoltage5V {

    private Voltage220V voltage220V; //第一步 关联关系 -- 聚合

    //第二步:构造器,传入一个Voltage220V 实例
    public VoltageAdapter(Voltage220V voltage220V) {
        this.voltage220V = voltage220V;
    }

    @Override
    public int output5V() {
        /*//获取到220v电压
        int srcV = output220V();
        int disV = srcV / 44; //夜光:转成5V

        return disV;*/
        //重写一下这部分的代码
        int dst = 0;
        if (voltage220V != null){
            int src = voltage220V.output220V(); //夜光:获取到220v的电压
            System.out.println("使用对象适配器~~,进行适配~");
            dst = src / 44;
            System.out.println("-----------适配完成---------------");
            System.out.println("输出的电压为:"+dst);

        }
        return dst;
    }
}

 

package 适配器模式.对象适配器;

//这边我们来写一个客户端,运行一下
public class Client {
    public static void main(String[] args) {
        System.out.println("----------对象适配器模式---------");

        Phone phone = new Phone();
        phone.charging(new VoltageAdapter(new Voltage220V()
        )); //这边要传入一个对象

    }
}

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值