装饰器模式

装饰器模式:

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

场景描述:

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

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();

    }
}
相关推荐
编码熊(Coding-Bear)4 天前
设计模式之结构型模式---装饰器模式
android·java·设计模式·装饰器模式
G皮T5 天前
【设计模式】结构型模式(一):适配器模式、装饰器模式
java·设计模式·适配器模式·装饰器模式·decorator·adapter·结构型模式
无敌岩雀6 天前
C++设计模式结构型模式———装饰模式
c++·设计模式·装饰器模式
小白9 天前
C# 结构型设计模式----装饰器模式
设计模式·装饰器模式
程序猿阿伟9 天前
《C++中的魔法:实现类似 Python 的装饰器模式》
java·c++·装饰器模式
Mr. zhihao9 天前
装饰器模式详解:动态扩展对象功能的优雅解决方案
java·开发语言·装饰器模式
Mr. zhihao9 天前
装饰器模式的适用场景示例
装饰器模式
Slow菜鸟9 天前
Spring 设计模式之装饰器模式
spring·设计模式·装饰器模式
zzzhpzhpzzz9 天前
设计模式——装饰器模式
设计模式·装饰器模式
Joeysoda12 天前
Java 代码优化 修饰器模式(Decorator Pattern)
linux·装饰器模式·1024程序员节