一、什么是装饰模式

  装饰( Decorator )模式又叫做包装模式。通 过一种对客户端透明的方式来扩展对象的功能, 是继承关系的一个替换方案。

二、装饰模式的结构

三、装饰模式的角色和职责

  抽象组件角色: 一个抽象接口,是被装饰类和 装饰类的父接口。

  具体组件角色:为抽象组件的实现类。

  抽象装饰角色:包含一个组件的引用,并定义了 与抽象组件一致的接口。

  具体装饰角色:为抽象装饰角色的实现类。负责 具体的装饰。

没装饰前

车接口

 //车接口
public interface Car { public void show(); public void run();
}
可以跑的车
 //可以跑的车
public class RunCar implements Car { public void run() {
System.out.println("可以跑");
} public void show() {
this.run();
}
}

会飞的车

 //会飞的车
public class FlyCar implements Car { public void show() {
this.run();
this.fly();
} public void run() {
System.out.println("可以跑");
} public void fly() {
System.out.println("可以飞");
}
}

游泳的车

 //游泳的车
public class SwimCar implements Car{ public void run() {
System.out.println("可以跑");
} public void Swim() {
System.out.println("可以游");
} public void show() {
this.run();
this.Swim();
}
}

测试

 public class MainClass {
public static void main(String[] args) {
Car flycar = new SwimCar();
flycar.show();
}
}

===========================================================================

车接口

 public interface Car {

     public void show();

     public void run();
}

可以跑的车

 //可以跑的车
public class RunCar implements Car { public void run() {
System.out.println("可以跑");
} public void show() {
this.run();
}
}

车装饰

 //汽车装饰
public abstract class CarDecorator implements Car{
private Car car; public Car getCar() {
return car;
} public void setCar(Car car) {
this.car = car;
} public CarDecorator(Car car) {
this.car = car;
} public abstract void show();
}

游泳车装饰

 //游泳车装饰
public class SwimCarDecorator extends CarDecorator { public SwimCarDecorator(Car car) {
super(car);
} public void show() {
this.getCar().show();
this.swim();
} public void swim() {
System.out.println("可以游");
} public void run() { }
}

飞车装饰

 //飞车装饰
public class FlyCarDecorator extends CarDecorator{ public FlyCarDecorator(Car car) {
super(car);
} public void show() {
this.getCar().show();
this.fly();
} public void fly() {
System.out.println("可以飞");
} public void run() { }
}

测试

 public class MainClass {
public static void main(String[] args) {
Car car = new RunCar(); car.show();
System.out.println("---------"); Car swimcar = new SwimCarDecorator(car);
swimcar.show();
System.out.println("---------"); Car flySwimCar = new FlyCarDecorator(swimcar);
flySwimCar.show();
}
}

07装饰模式Decorator的更多相关文章

  1. 装饰模式/decorator模式/结构型模式

    装饰模式Decorator 定义 为对象动态的增加新的功能,实现要求装饰对象和被装饰对象实现同一接口或抽象类,装饰对象持有被装饰对象的实例. java实现要点 定义一个接口或抽象类,作为被装饰者的抽象 ...

  2. 二十四种设计模式:装饰模式(Decorator Pattern)

    装饰模式(Decorator Pattern) 介绍动态地给一个对象添加一些额外的职责.就扩展功能而言,它比生成子类方式更为灵活.示例有一个Message实体类,某个对象对它的操作有Insert()和 ...

  3. 乐在其中设计模式(C#) - 装饰模式(Decorator Pattern)

    原文:乐在其中设计模式(C#) - 装饰模式(Decorator Pattern) [索引页][源码下载] 乐在其中设计模式(C#) - 装饰模式(Decorator Pattern) 作者:weba ...

  4. 设计模式 装饰模式(Decorator)

    设计模式 装饰模式(Decorator) @author ixenos 装饰模式是什么 1.装饰模式以对客户端透明的方式对象的功能,是继承关系的一个替代方案,但装饰模式可以在不创造更多子类的情况下,对 ...

  5. 设计模式-装饰模式(Decorator Pattern)

    装饰模式(Decorator Pattern):动态地给一个对象添加一些额外的职责,就增加功能来说,装饰模式比生成子类更为灵活

  6. Netty学习-IO体系架构系统回顾 & 装饰模式Decorator的具体使用

    Netty学习-IO体系架构系统回顾 IO和NIO的学习 NIO - 1.4 开始出的 在网络应用框架中,NIO得到了大量的使用,特别是netty里面 前提:对IO及其了解 对IO的总结和回顾 理解J ...

  7. 设计模式-09装饰模式(Decorator Pattern)

    1.模式动机 一般有两种方式可以实现给一个类或对象增加行为: 继承机制:使用继承机制是给现有类添加功能的一种有效途径,通过继承一个现有类可以使得子类在拥有自身方法的同时还拥有父类的方法.但是这种方法是 ...

  8. 设计模式系列之装饰模式(Decorator Pattern)——扩展系统功能

    说明:设计模式系列文章是读刘伟所著<设计模式的艺术之道(软件开发人员内功修炼之道)>一书的阅读笔记.个人感觉这本书讲的不错,有兴趣推荐读一读.详细内容也可以看看此书作者的博客https:/ ...

  9. 装饰模式 - Decorator 和 外观模式 - Facade

    装饰模式 Decorator,不改变接口但动态给对象加入责任,所需功能按顺序串联起来控制,比生成子类灵活. 外观模式 Facade,让接口更简单.为子系统中的一组接口提供一个一致的界面. 参考:

随机推荐

  1. 喵哈哈村的魔法考试 Round #14 (Div.2) 题解

    喵哈哈村的四月半活动(一) 题解: 唯一的case,就是两边长度一样的时候,第三边只有一种情况. #include <iostream> #include <cstdio> # ...

  2. java之静态方法与非静态方法

    1.静态方法最大的特点就是,不用生成类的实例对象,直接可以用. 2.它的语法格式:<类名|实例名>.<类变量名> 3.Java中的静态方法中,在方法声明时前面要加static ...

  3. Scala:Method 小技巧,忽略result type之后的等号

    var x = 0 def IncreaseOne(): Int = { x += 1 x } def IncreaseOne() = { x += 1 x } def IncreaseOne = { ...

  4. [leetcode]Rotate List @ Python

    原题地址:https://oj.leetcode.com/problems/rotate-list/ 题意: Given a list, rotate the list to the right by ...

  5. Android官方导航栏ActionBar(二)—— Action View、Action Provider、Navigation Tabs的详细用法

    在上一篇文章(Android之官方导航栏ActionBar)中,我们介绍了ActionBar各组成部分的基本应用.ActionBar除了提供Action Buttons外,还提供了多种导航方式如 Ac ...

  6. SVN命令行更新代码

    命令列表 svn help查看帮助信息 Available subcommands: add auth blame (praise, annotate, ann) cat changelist (cl ...

  7. linux使用pam_tally2.so模块限制登录3次失败后禁止5分钟

    在线上的服务器有时需要限制用户登录次数.这个功能可以通过pam的pam_tally2.so模块来实现 PAM模块是用sun提出的一种认证机制 pam_tally2.so模块 一.格式 pam_tall ...

  8. 100个MySQL 的调节和优化的提示

    100个MySQL 的调节和优化的提示 MySQL是一个功能强大的开源数据库.随着越来越多的数据库驱动的应用程序,人们一直在推动MySQL发展到它的极限.这里是101条调节和优化MySQL安装的技巧. ...

  9. 【转】Extjs2.2.1 DateField 变形的问题解决方案

    <script> //Extjs2.2.1 DateField 变形的问题 // IE Ext.isIE9 = Ext.isIE && navigator.userAgen ...

  10. intellij IDEA 安装和配置和使用

    下载:https://www.jetbrains.com/idea/download/download-thanks.html?platform=windows 安装教程:https://blog.c ...