android开发装饰者模式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android开发装饰者模式相关的知识,希望对你有一定的参考价值。

1.

package test;

interface Dongwu {
    void eat();
}

2.

package test;

public class Gou implements Dongwu{
    public void eat() {
        // TODO Auto-generated method stub
        System.out.println("我是小狗");
    }

}

3.

package test;

public class Mao implements Dongwu{

    @Override
    public void eat() {
        // TODO Auto-generated method stub
        System.out.println("我是小猫");
    }
    
}

4.

package test;

public class ADongwu implements Dongwu{
    private Dongwu dongwu;
    public ADongwu(Dongwu dongwu) {
        // TODO Auto-generated constructor stub
        this.dongwu = dongwu;
    }
    @Override
    public void eat() {
        // TODO Auto-generated method stub
        System.out.println("A家的动物吃饭前要先跑一跑");
        dongwu.eat();
    }
    
}


5.

package test;

public class BDongwu implements Dongwu{
    private Dongwu dongwu;
    public BDongwu(Dongwu dongwu) {
        // TODO Auto-generated constructor stub
        this.dongwu = dongwu;
    }
    @Override
    public void eat() {
        // TODO Auto-generated method stub
        System.out.println("B家的动物吃饭先要先跳一跳");
        dongwu.eat();
    }

}


6.

package test;

public class Test {
    public static void main(String args []) {
        Gou gou = new Gou();
        ADongwu a = new ADongwu(gou);
        a.eat();
        
        Gou gou2 = new Gou();
        BDongwu b = new BDongwu(gou2);
        b.eat();
    }
}

以上是关于android开发装饰者模式的主要内容,如果未能解决你的问题,请参考以下文章

小白自我提高学习设计模式笔记—装饰者模式在Android开发的小试

小白自我提高学习设计模式笔记—装饰者模式

java/android 设计模式学习笔记---装饰者模式

装饰者模式

JavaScript设计模式与开发实践 装饰者模式

浅析设计模式3 —— 装饰者模式