设计模式之装饰者模式

1.装饰者模式概念

允许在不修改原有类的情况下动态地为对象添加新的功能。它通过创建一个包装对象(即装饰器),并在运行时将这个包装对象附加到现有的对象上,从而达到扩展功能的目的。

2.装饰者的组成

1)抽象组件(Component)

抽象组件是一个接口或抽象类,定义了所有组件(包括具体组件和装饰器)的公共接口。

2)具体组件(Concrete Component)

具体组件实现了抽象组件接口中的方法,提供了基本的功能。

3)装饰器(Decorator)

装饰器也是一个接口或抽象类,继承自抽象组件接口。

4)具体装饰器(Concrete Decorator)

具体装饰器实现了装饰器接口中的方法,为被装饰的对象添加新的功能。

3.举个例子

想给自己的宠物狗(Concrete Component)穿衣服(Concrete Decorator)

想给自己的宠物狗(Concrete Component)穿衣服(Concrete Decorator)戴眼镜(Concrete Decorator)

如下图:

宠物猫===>衣服==》墨镜

4实现代码:

1)抽象组件

java 复制代码
package org.xiji.Decorator;

/**
 * 组件抽象类
 */
public interface Component {
    /**
     * 父组件操作
     */
    void introduce();
}

2)具体组件

java 复制代码
package org.xiji.Decorator;

public class Cat implements Component {
    @Override
    public void introduce() {
        System.out.println("这是一只猫");
    }
}

java 复制代码
package org.xiji.Decorator;

public class Dog implements Component{
    @Override
    public void introduce() {
        System.out.println("这是一只狗");
    }
}

3)装饰器

java 复制代码
package org.xiji.Decorator;

/**
 * 装饰器抽象类
 */
public abstract class Decorator implements Component{
    /**
     * 包含组件接口
     */
    Component component;
    public Decorator(Component component) {
        this.component = component;
    }

    /**
     * 调用父组件方法
     */
    @Override
    public void introduce() {
        component.introduce();
    }
}

4)具体装饰器

墨镜

java 复制代码
package org.xiji.Decorator;

/**
 * 墨镜
 */
public class Sunglasses extends Decorator{
    public Sunglasses(Component component) {
        super(component);
    }

    @Override
    public void introduce() {
        super.introduce();
        this.wearSunglasses();
    }

    public void wearSunglasses()
    {
        System.out.println("带墨镜");
    }
}

红色衣服

java 复制代码
package org.xiji.Decorator;

/**
 * 红色衣服
 */
public class RedClothes extends Decorator{
    public RedClothes(Component component) {
        super(component);
    }



    @Override
    public void introduce() {
        super.introduce();
        this.wearRedClothes();

    }

    /**
     *
     * 穿一件红色的衣服
     */
    public void wearRedClothes() {
        System.out.println("穿一件红色的衣服");
    }
}

蓝色衣服

java 复制代码
package org.xiji.Decorator;

public class BlueClothes extends Decorator{
    public BlueClothes(Component component) {
        super(component);
    }

    @Override
    public void introduce() {
        super.introduce();
        this.wearBlueClothes();

    }
    /**
     * 穿了一键蓝色的衣服
     */
    public void wearBlueClothes(){
        System.out.println("穿了一件蓝色的衣服");
    }

}

5)测试类

java 复制代码
package org.xiji.Decorator;

/**
 * 装饰者模式测试类
 */
public class DecoratorMain
{
    public static void main(String[] args) {
        Component dog = new Dog();

        dog.introduce();

        //dog ==> blueClothes ==> Sunglasses
        System.out.println("=======================");
        System.out.println("给狗穿一件蓝色的衣服");
        dog = new BlueClothes(dog);
        dog.introduce();
        System.out.println("=======================");

        //把狗的衣服换下
        dog = new Dog();

        System.out.println("=======================");
        System.out.println("给狗穿上红色衣服");
        dog = new RedClothes(dog);


        System.out.println("给狗带上墨镜");
        dog = new Sunglasses(dog);
        dog.introduce();
        System.out.println("=======================");

        //创建一只宠物猫
        Component cat = new Cat();
        cat.introduce();
        System.out.println("=======================");
        System.out.println("给猫穿一件红色的衣服");
        cat = new RedClothes(cat);
        System.out.println("给猫带上墨镜");
        cat =new Sunglasses(cat);
        cat.introduce();
        System.out.println("=======================");








    }
}

5.运行结果

相关推荐
源码7可36 分钟前
Java高手速成--吃透源码+手写组件+定制开发
java
zjjuejin39 分钟前
Maven 云原生时代面临的八大挑战
java·后端·maven
ZhengEnCi40 分钟前
@RequestParam 注解完全指南-从参数绑定到接口调用的Web开发利器
java·spring boot
weixin_445476681 小时前
一天一个设计模式——开闭原则
服务器·设计模式·开闭原则
李广坤1 小时前
模板方法模式(Template Method Pattern)
设计模式
=>>漫反射=>>1 小时前
单元测试 vs Main方法调试:何时使用哪种方式?
java·spring boot·单元测试
初圣魔门首席弟子1 小时前
c++ bug 记录(merge函数调用时错误地传入了vector对象而非迭代器。)
java·c++·bug
cxyxiaokui0011 小时前
🔍 为什么我的日志在事务回滚后也没了?——揭秘 REQUIRES_NEW 的陷阱
java·后端·spring
ZhengEnCi1 小时前
@Parameter 注解技术解析-从 API 文档生成到接口描述清晰的 SpringBoot 利器
java·spring boot
低调小一1 小时前
Kuikly 小白拆解系列 · 第1篇|两棵树直调(Kotlin 构建与原生承载)
android·开发语言·kotlin