装饰器模式

装饰器模式:

将需要装饰的主方法作为某种参数传递,然后对其进行装饰

场景描述:

假设有一个咖啡店,顾客可以根据自己的喜好选择不同的咖啡和添加不同的配料(比如糖和奶油)。

java 复制代码
public class MyTest {
    public static void main(String[] args) {
        Coffee mycoffee = new MyCoffee();
        DecoratorCoffee sugar = new takeSuger(mycoffee);
        takeCream takeCream = new takeCream(sugar);
        takeCream.getCoffee();
    }
}

interface Coffee {
    void getCoffee();
}

abstract class DecoratorCoffee implements Coffee {
    Coffee coffee;

    public DecoratorCoffee(Coffee coffee) {
        this.coffee = coffee;
    }

    public void getcoffee() {
        coffee.getCoffee();
    }
}

class MyCoffee implements Coffee {

    public void getCoffee() {
        System.out.println("接咖啡");
    }
}

class takeSuger extends DecoratorCoffee {


    public takeSuger(Coffee coffee) {
        super(coffee);
    }

    @Override
    public void getCoffee() {
        System.out.println("加糖");
        super.getcoffee();

    }
}

class takeCream extends DecoratorCoffee {

    public takeCream(Coffee coffee) {
        super(coffee);
    }

    @Override
    public void getCoffee() {
        System.out.println("加奶油");
        super.getcoffee();

    }
}
相关推荐
〆、风神3 天前
装饰器模式与模板方法模式实现MyBatis-Plus QueryWrapper 扩展
mybatis·装饰器模式·模板方法模式
qq_529835353 天前
装饰器模式:如何用Java打扮一个对象?
java·开发语言·装饰器模式
搞不懂语言的程序员3 天前
装饰器模式详解
开发语言·python·装饰器模式
NorthCastle23 天前
设计模式-结构型模式-装饰器模式
设计模式·装饰器模式
lina_mua23 天前
前端开发中的设计模式:装饰器模式的应用与实践
设计模式·装饰器模式
油盐不进的吗23 天前
2.装饰器模式
装饰器模式
RationalDysaniaer23 天前
golang设计模式-装饰器模式
设计模式·golang·装饰器模式
香菇滑稽之谈1 个月前
装饰器模式的C++实现示例
c++·算法·设计模式·装饰器模式
yuanpan1 个月前
23种设计模式之《装饰器模式(Decorator)》在c#中的应用及理解
设计模式·c#·装饰器模式
攻城狮7号1 个月前
【第八节】C++设计模式(结构型模式)-Decorator(装饰器)模式
c++·设计模式·装饰器模式