Java中的装饰器模式

在Java中,装饰器模式允许我们动态地给对象添加新的行为或责任,而无需修改原有类。以下是一个简单的装饰器模式示例,我们将模拟一个咖啡销售系统,其中基础饮料类(Component)是Coffee,装饰器类(Decorator)用来添加额外的调料。

首先,定义抽象组件------基础咖啡接口:

java 复制代码
// 抽象组件(Component)
public interface Coffee {
    double getCost(); // 获取咖啡价格
    String getDescription(); // 获取咖啡描述
}

// 具体组件(ConcreteComponent)
public class SimpleCoffee implements Coffee {
    @Override
    public double getCost() {
        return 1.0; // 基础咖啡的价格
    }

    @Override
    public String getDescription() {
        return "Simple Coffee"; // 基础咖啡的描述
    }
}

接下来,创建装饰器接口:

java 复制代码
// 装饰器接口(Decorator)
public abstract class CoffeeDecorator implements Coffee {
    protected Coffee coffee; // 维持对组件对象的引用

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

    @Override
    public double getCost() {
        return coffee.getCost(); // 默认调用原始咖啡的价格
    }

    @Override
    public String getDescription() {
        return coffee.getDescription(); // 默认调用原始咖啡的描述
    }
}

然后,我们创建几个具体的装饰器类,它们会附加额外的功能(比如添加糖、奶或者巧克力):

java 复制代码
// 具体装饰器 - 添加糖
public class SugarDecorator extends CoffeeDecorator {
    private static final double SUGAR_COST = 0.25;

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

    @Override
    public double getCost() {
        return super.getCost() + SUGAR_COST; // 在原始咖啡价格基础上增加糖的成本
    }

    @Override
    public String getDescription() {
        return coffee.getDescription() + ", With Sugar"; // 更新描述信息
    }
}

// 具体装饰器 - 添加牛奶
public class MilkDecorator extends CoffeeDecorator {
    private static final double MILK_COST = 0.5;

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

    @Override
    public double getCost() {
        return super.getCost() + MILK_COST; // 在原始咖啡价格基础上增加牛奶的成本
    }

    @Override
    public String getDescription() {
        return coffee.getDescription() + ", With Milk"; // 更新描述信息
    }
}

// 可以继续定义其他装饰器,如ChocolateDecorator等...

最后,在客户端代码中,我们可以动态地构建不同口味的咖啡:

java 复制代码
public class CoffeeShop {
    public static void main(String[] args) {
        Coffee simpleCoffee = new SimpleCoffee();
        System.out.println(simpleCoffee.getDescription() + " costs: " + simpleCoffee.getCost());

        Coffee coffeeWithSugar = new SugarDecorator(simpleCoffee);
        System.out.println(coffeeWithSugar.getDescription() + " costs: " + coffeeWithSugar.getCost());

        Coffee coffeeWithMilkAndSugar = new MilkDecorator(coffeeWithSugar);
        System.out.println(coffeeWithMilkAndSugar.getDescription() + " costs: " + coffeeWithMilkAndSugar.getCost());
    }
}

运行上述代码后,将会输出每种咖啡的描述和对应的价格,展示了如何通过装饰器模式动态地添加不同的调料并计算总成本。

相关推荐
007php0075 小时前
某大厂跳动面试:计算机网络相关问题解析与总结
java·开发语言·学习·计算机网络·mysql·面试·职场和发展
JH30735 小时前
第七篇:Buffer Pool 与 InnoDB 其他组件的协作
java·数据库·mysql·oracle
皮皮林5517 小时前
订单分库分表后,商家如何高效的查询?
java
Roye_ack7 小时前
【项目实战 Day12】springboot + vue 苍穹外卖系统(Apache POI + 工作台模块 + Excel表格导出 完结)
java·spring boot·后端·excel·苍穹外卖
Code blocks8 小时前
SpringBoot自定义请求前缀
java·spring boot·后端
Jabes.yang9 小时前
Java求职面试:从Spring Boot到Kafka的技术探讨
java·spring boot·面试·kafka·互联网大厂
canonical_entropy9 小时前
DDD本质论:从哲学到数学,再到工程实践的完整指南之实践篇
java·后端·领域驱动设计
_Power_Y10 小时前
Java面试常用算法api速刷
java·算法·面试
纪莫10 小时前
技术面:Spring (事务传播机制、事务失效的原因、BeanFactory和FactoryBean的关系)
java·spring·java面试⑧股
红衣小蛇妖10 小时前
LeetCode-704-二分查找
java·算法·leetcode·职场和发展