android设计模式--适配器

//实现DGB接口
public class Adapter implements DGBInter{

    private ZGBInter mZGBInter;
    //构造函数中传入ZGB接口,
    public Adapter(ZGBInter ZGBInter) {
        mZGBInter = ZGBInter;
    }
    //复写DGB接口的方法,在里面实现ZGB的方法!!
    @Override
    public void twoRound() {
        mZGBInter.threeRound();
    }
}
  • 接下来是2个接口以及实现类
//DGB接口
public interface DGBInter {

    void twoRound();
}
public class DGBSddddd implements DGBInter {
    @Override
    public void twoRound() {
        System.out.print("use dg two round");
    }
}
//ZGB接口
public interface ZGBInter {

    void threeRound();
}
public class ZGBSzzzzz implements ZGBInter {
    @Override
    public void threeRound() {
        System.out.print("use zg three round");
    }
}
  • 还有一个客户端Hotel,来将2个接口中的方法进行使用
public class Hotel {

    private DGBInter mDGBInter;
    //2个构造方法都可以使用
    public Hotel(){}

    public Hotel(DGBInter dgbInter){
        mDGBInter = dgbInter;
    }

    public void setAdapter(DGBInter dgbInter){
        mDGBInter = dgbInter;
    }
    //充电的功能
    public void charge(){

        mDGBInter.twoRound();
    }
}
  • 接下来就是如何使用了
public class Test {
    public static void main(String[] args) {
        //这里通过setAdapter来设置
        Adapter adapter = new Adapter(new ZGBSzzzzz());
        Hotel hotel = new Hotel();
        hotel.setAdapter(adapter);
        hotel.charge();
    }
        //这里是通过构造函数直接来设置
//    Adapter adapter = new Adapter(new ZGBSzzzzz());
//        Hotel hotel = new Hotel(adapter);
//        hotel.charge();
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值