当前位置:   article > 正文

设计模式(十):装饰者模式

设计模式(十):装饰者模式

1. 装饰者模式的介绍

装饰器模式(Decorator Pattern)属于结构型模式,允许向一个现有的对象添加新的功能,同时又不改变其结构。

装饰器模式通过将对象包装在装饰器类中,以便动态地修改其行为。

装饰器模式包含四个核心角色:

  • 抽象组件(Component):定义了原始对象和装饰器对象的公共接口或抽象类,可以是具体组件类的父类或接口。
  • 具体组件(Concrete Component):是被装饰的原始对象,它定义了需要添加新功能的对象。
  • 抽象装饰器(Decorator):继承自抽象组件,它包含了一个抽象组件对象,同时可以通过组合方式持有其他装饰器对象。
  • 具体装饰器(Concrete Decorator):实现了抽象装饰器的接口,负责向抽象组件添加新的功能。具体装饰器通常会在调用原始对象的方法之前或之后执行自己的操作。

2. 装饰者模式的类图

在这里插入图片描述

3. 装饰者模式的实现

3.1 创建一个抽象组建Chef

package blog;

/**
 * 厨师
 */
public interface Chef {
    void cook();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3.2 创建两个具体组件ChineseChef和EuropeanChef

package blog;

/**
 * 中国厨师
 */
public class ChineseChef implements Chef {

    @Override
    public void cook() {
        System.out.println("制作中餐");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
package blog;

/**
 * 西方厨师
 */
public class EuropeanChef implements Chef{
    @Override
    public void cook() {
        System.out.println("制作西餐");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

3.3 创建抽象装饰器ChefDecorator

package blog;

/**
 * 厨师装饰器
 */
public abstract class ChefDecorator implements Chef {
    protected Chef chef;

    public ChefDecorator(Chef chef) {
        this.chef = chef;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

3.4 创建具体装饰器PlateChefDecorator

package blog;

/**
 * 厨师摆盘装饰器
 */
public class PlateChefDecorator extends ChefDecorator{
    public PlateChefDecorator(Chef chef) {
        super(chef);
    }

    @Override
    public void cook() {
        chef.cook();
        plate();
    }

    private void plate() {
        if (chef instanceof ChineseChef) {
            System.out.println("中式摆盘");
        } else {
            System.out.println("西式摆盘");
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

3.5 测试

package blog;

public class DecoratorDemo {
    public static void main(String[] args) {
        ChineseChef chineseChef = new ChineseChef();
        PlateChefDecorator plateChineseChef = new PlateChefDecorator(chineseChef);
        plateChineseChef.cook();

        EuropeanChef europeanChef = new EuropeanChef();
        PlateChefDecorator plateEuropeanChef = new PlateChefDecorator(europeanChef);
        plateEuropeanChef.cook();

    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/528207
推荐阅读
相关标签
  

闽ICP备14008679号