设计模式结构型装饰者模式

Posted lisin-lee-cooper

tags:

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

一.概述
1.1 概念
指在不改变现有对象结构的情况下,动态地给该对象增加一些职责(即增加其额外功能)的模式。

1.2 结构

装饰(Decorator)模式中的角色:
抽象构件(Component)角色 :定义一个抽象接口以规范准备接收附加责任的对象。
具体构件(Concrete Component)角色 :实现抽象构件,通过装饰角色为其添加一些职责。
抽象装饰(Decorator)角色 : 继承或实现抽象构件,并包含具体构件的实例,可以通过其子类扩展具体构件的功能。
具体装饰(ConcreteDecorator)角色 :实现抽象装饰的相关方法,并给具体构件对象添加附加的责任。

二.场景

快餐店有炒面、炒饭这些快餐,可以额外附加鸡蛋、火腿、培根这些配菜,当然加配菜需要额外加钱,每个配菜的价钱通常不太一样,那么计算总价就会显得比较麻烦。使用继承的方式存在的问题:扩展性不好如果要再加一种配料(火腿肠),就需要定义更多的子类。

三.类图及实现

public abstract class FastFood 
    private float price;
    private String desc;

    public FastFood() 
    

    public FastFood(float price, String desc) 
        this.price = price;
        this.desc = desc;
    

    public void setPrice(float price) 
        this.price = price;
    

    public float getPrice() 
        return price;
    

    public String getDesc() 
        return desc;
    

    public void setDesc(String desc) 
        this.desc = desc;
    

    public abstract float cost();

public class FriedRice extends FastFood 
    public FriedRice() 
        super(10, "炒饭");
    

    public float cost() 
        return getPrice();
    

public class FriedNoodles extends FastFood 
    public FriedNoodles() 
        super(12, "炒面");
    

    public float cost() 
        return getPrice();
    


public abstract class Garnish extends FastFood 
    private FastFood fastFood;

    public FastFood getFastFood() 
        return fastFood;
    

    public void setFastFood(FastFood fastFood) 
        this.fastFood = fastFood;
    

    public Garnish(FastFood fastFood, float price, String desc) 
        super(price, desc);
        this.fastFood = fastFood;
    

public class Egg extends Garnish 
    public Egg(FastFood fastFood) 
        super(fastFood, 1, "鸡蛋");
    

    public float cost() 
        return getPrice() + getFastFood().getPrice();
    

    @Override
    public String getDesc() 
        return super.getDesc() + getFastFood().getDesc();
    

public class Bacon extends Garnish 
    public Bacon(FastFood fastFood) 
        super(fastFood, 2, "培根");
    

    @Override
    public float cost() 
        return getPrice() + getFastFood().getPrice();
    

    @Override
    public String getDesc() 
        return super.getDesc() + getFastFood().getDesc();
    

public class DecoratorMain 

    public static void main(String[] args) 
        FastFood food = new FriedRice();
        System.out.println(food.getDesc() + " " + food.cost() + "元");
        System.out.println("========");
        FastFood food1 = new FriedRice();
        food1 = new Egg(food1);
        System.out.println(food1.getDesc() + " " + food1.cost() + "元");
        System.out.println("========");
        FastFood food2 = new FriedNoodles();
        food2 = new Bacon(food2);
        System.out.println(food2.getDesc() + " " + food2.cost() + "元");
    


四.JDK源码应用

IO流中的包装类使用到了装饰者模式。BufferedInputStream,BufferedOutputStream,BufferedReader,BufferedWriter。
目的:
BufferedWriter使用装饰者模式对Writer子实现类进行了增强,添加了缓冲区,提高了写数据的效率。

以上是关于设计模式结构型装饰者模式的主要内容,如果未能解决你的问题,请参考以下文章

深入理解设计模式-装饰者模式

深入理解设计模式-装饰者模式

设计模式之装饰者模式

设计模式 结构型模式 -- 装饰者模式(概述 & 快餐店案例 & 模式优点 & 使用场景 & 源码解析 & 和代理模式的区别)

设计模式:装饰模式

设计模式 - 装饰者模式详解