结构型模式 适配器模式 适配器模式(Adapter Pattern)是作为两个不兼容的接口之间的桥梁。这种类型的设计模式属于结构型模式,它结合了两个独立接口的功能。在程序中这个模式也是会用到的,在不能直接去改变源码的情况,但是这个接口的又不能直接用。这时候就需要考虑适配模式,去复用一些现成的类。得到想要的业务逻辑。
由于java是不支持多继承的而类的适配器模式 就是通过多重继承来实现的所以现在讲的主要是对象适配器模式。
优点: 1、可以让任何两个没有关联的类一起运行。 2、提高了类的复用。 3、增加了类的透明度。 4、灵活性好。
缺点: 1、过多地使用适配器,会让系统非常零乱,不易整体进行把握。比如,明明看到调用的是 A 接口,其实内部被适配成了 B 接口的实现,一个系统如果太多出现这种情况,无异于一场灾难。因此如果不是很有必要,可以不使用适配器,而是直接对系统进行重构。 2.由于 JAVA 至多继承一个类,所以至多只能适配一个适配者类,而且目标类必须是抽象类。
使用场景: 有动机地修改一个正常运行的系统的接口,这时应该考虑使用适配器模式。
注意事项: 适配器不是在详细设计时添加的,而是解决正在服役的项目的问题。
网线 Adptee 类
1 2 3 4 5 6 public class Adaptee { public void request () { System.out.println("连接网线上网" ); } }
适配器接口 NetToUsb
1 2 3 4 5 public interface NetToUsb { public void handleRequest () ; }
适配器 Adapter 类 (核心类)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 public class Adapter implements NetToUsb { private Adaptee adaptee; public Adapter (Adaptee adaptee) { this .adaptee = adaptee; } @Override public void handleRequest () { adaptee.request(); } }
客户端 Computer 类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 public class Computer { public void net (NetToUsb adapter) { adapter.handleRequest(); } public static void main (String[] args) { Computer computer = new Computer (); Adaptee adaptee = new Adaptee (); Adapter adapter = new Adapter (adaptee); computer.net(adapter); } }
桥接模式 桥接(Bridge)是用于把抽象化与实现化解耦,使得二者可以独立变化。这种类型的设计模式属于结构型模式,它通过提供抽象化和实现化之间的桥接结构,来实现二者的解耦。这种模式涉及到一个作为桥接的接口,使得实体类的功能独立于接口实现类。这两种类型的类可被结构化改变而互不影响。
意图: 将抽象部分与实现部分分离,使它们都可以独立的变化。
主要解决: 在有多种可能会变化的情况下,用继承会造成类爆炸问题,扩展起来不灵活。
何时使用: 实现系统可能有多个角度分类,每一种角度都可能变化。
如何解决: 把这种多角度分类分离出来,让它们独立变化,减少它们之间耦合。
优点: 1、抽象和实现的分离。 2、优秀的扩展能力。 3、实现细节对客户透明。
缺点: 桥接模式的引入会增加系统的理解与设计难度,由于聚合关联关系建立在抽象层,要求开发者针对抽象进行设计与编程。
使用场景: 1、如果一个系统需要在构件的抽象化角色和具体化角色之间增加更多的灵活性,避免在两个层次之间建立静态的继承联系,通过桥接模式可以使它们在抽象层建立一个关联关系。 2、对于那些不希望使用继承或因为多层次继承导致系统类的个数急剧增加的系统,桥接模式尤为适用。 3、一个类存在两个独立变化的维度,且这两个维度都需要进行扩展。
注意事项: 对于两个独立变化的维度,使用桥接模式再适合不过了。
品牌类接口 Brand
1 2 3 4 public interface Brand { void info () ; }
联想品牌类 Lenovo
1 2 3 4 5 6 7 public class Lenovo implements Brand { @Override public void info () { System.out.print("联想" ); } }
苹果品牌类 Apple
1 2 3 4 5 6 7 public class Apple implements Brand { @Override public void info () { System.out.print("苹果" ); } }
电脑抽象类 Computer (核心类)
1 2 3 4 5 6 7 8 9 10 11 12 13 public abstract class Computer { protected Brand brand; public Computer (Brand brand) { this .brand = brand; } public void info () { brand.info(); } }
台式电脑类 Desktop
1 2 3 4 5 6 7 8 9 10 11 12 public class Desktop extends Computer { public Desktop (Brand brand) { super (brand); } @Override public void info () { super .info(); System.out.println("台式机" ); } }
笔记本电脑类 Laptop
1 2 3 4 5 6 7 8 9 10 11 12 public class Laptop extends Computer { public Laptop (Brand brand) { super (brand); } @Override public void info () { super .info(); System.out.println("笔记本" ); } }
测试
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public class Test { public static void main (String[] args) { Desktop desktop = new Desktop (new Lenovo ()); Desktop desktop1 = new Desktop (new Apple ()); desktop.info(); desktop1.info(); Laptop laptop = new Laptop (new Lenovo ()); Laptop laptop1 = new Laptop (new Apple ()); laptop.info(); laptop1.info(); } }
装饰器模式 装饰器模式(Decorator Pattern)允许向一个现有的对象添加新的功能,同时又不改变其结构。这种类型的设计模式属于结构型模式,它是作为现有的类的一个包装。
这种模式创建了一个装饰类,用来包装原有的类,并在保持类方法签名完整性的前提下,提供了额外的功能。
我们通过下面的实例来演示装饰器模式的用法。其中,我们将把一个形状装饰上不同的颜色,同时又不改变形状类。
介绍
意图: 动态地给一个对象添加一些额外的职责。就增加功能来说,装饰器模式相比生成子类更为灵活。
主要解决: 一般的,我们为了扩展一个类经常使用继承方式实现,由于继承为类引入静态特征,并且随着扩展功能的增多,子类会很膨胀。
何时使用: 在不想增加很多子类的情况下扩展类。
如何解决: 将具体功能职责划分,同时继承装饰者模式。
关键代码: 1、Component 类充当抽象角色,不应该具体实现。 2、修饰类引用和继承 Component 类,具体扩展类重写父类方法。
应用实例: 1、孙悟空有 72 变,当他变成”庙宇”后,他的根本还是一只猴子,但是他又有了庙宇的功能。 2、不论一幅画有没有画框都可以挂在墙上,但是通常都是有画框的,并且实际上是画框被挂在墙上。在挂在墙上之前,画可以被蒙上玻璃,装到框子里;这时画、玻璃和画框形成了一个物体。
优点: 装饰类和被装饰类可以独立发展,不会相互耦合,装饰模式是继承的一个替代模式,装饰模式可以动态扩展一个实现类的功能。
缺点: 多层装饰比较复杂。
使用场景: 1、扩展一个类的功能。 2、动态增加功能,动态撤销。
注意事项: 可代替继承。
实现
我们将创建一个 Shape 接口和实现了 Shape 接口的实体类。然后我们创建一个实现了 Shape 接口的抽象装饰类 ShapeDecorator ,并把 Shape 对象作为它的实例变量。
RedShapeDecorator 是实现了 ShapeDecorator 的实体类。
DecoratorPatternDemo ,我们的演示类使用 RedShapeDecorator 来装饰 Shape 对象。
1、创建一个接口
Shape.java
1 2 3 public interface Shape { void draw () ; }
2、创建实现接口的实体类
Rectangle.java
1 2 3 4 5 6 7 public class Rectangle implements Shape { @Override public void draw () { System.out.println("Shape: Rectangle" ); } }
Circle.java
1 2 3 4 5 6 7 public class Circle implements Shape { @Override public void draw () { System.out.println("Shape: Circle" ); } }
3、创建实现了 Shape 接口的抽象装饰类 ,想要实现图形修饰的具体实现类都得继承实现该抽象类
ShapeDecorator.java (核心类)
1 2 3 4 5 6 7 8 9 10 11 12 13 public abstract class ShapeDecorator implements Shape { protected Shape decoratedShape; public ShapeDecorator (Shape decoratedShape) { this .decoratedShape = decoratedShape; } public void draw () { decoratedShape.draw(); } }
4、创建扩展了 ShapeDecorator 类的实体装饰类
RedShapeDecorator.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 public class RedShapeDecorator extends ShapeDecorator { public RedShapeDecorator (Shape decoratedShape) { super (decoratedShape); } @Override public void draw () { decoratedShape.draw(); setRedBorder(decoratedShape); } private void setRedBorder (Shape decoratedShape) { System.out.println("Border Color: Red" ); } }
5、使用 RedShapeDecorator 来装饰 Shape 对象
DecoratorPatternDemo.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 public class DecoratorPatternDemo { public static void main (String[] args) { Shape circle = new Circle (); ShapeDecorator redCircle = new RedShapeDecorator (new Circle ()); ShapeDecorator redRectangle = new RedShapeDecorator (new Rectangle ()); System.out.println("Circle with normal border" ); circle.draw(); System.out.println("\nCircle of red border" ); redCircle.draw(); System.out.println("\nRectangle of red border" ); redRectangle.draw(); } }
执行程序,输出结果:
1 2 3 4 5 6 7 8 9 10 Circle with normal border Shape: Circle Circle of red border Shape: Circle Border Color: Red Rectangle of red border Shape: Rectangle Border Color: Red
代理模式 在代理模式(Proxy Pattern)中,一个类代表另一个类的功能。这种类型的设计模式属于结构型模式。
在代理模式中,我们创建具有现有对象的对象,以便向外界提供功能接口。
介绍
意图: 为其他对象提供一种代理以控制对这个对象的访问。
主要解决: 在直接访问对象时带来的问题,比如说:要访问的对象在远程的机器上。在面向对象系统中,有些对象由于某些原因(比如对象创建开销很大,或者某些操作需要安全控制,或者需要进程外的访问),直接访问会给使用者或者系统结构带来很多麻烦,我们可以在访问此对象时加上一个对此对象的访问层。
何时使用: 想在访问一个类时做一些控制。
如何解决: 增加中间层。
关键代码: 实现与被代理类组合。
应用实例: 1、Windows 里面的快捷方式。 2、猪八戒去找高翠兰结果是孙悟空变的,可以这样理解:把高翠兰的外貌抽象出来,高翠兰本人和孙悟空都实现了这个接口,猪八戒访问高翠兰的时候看不出来这个是孙悟空,所以说孙悟空是高翠兰代理类。 3、买火车票不一定在火车站买,也可以去代售点。 4、一张支票或银行存单是账户中资金的代理。支票在市场交易中用来代替现金,并提供对签发人账号上资金的控制。 5、spring aop。
优点: 1、职责清晰。 2、高扩展性。 3、智能化。
缺点: 1、由于在客户端和真实主题之间增加了代理对象,因此有些类型的代理模式可能会造成请求的处理速度变慢。 2、实现代理模式需要额外的工作,有些代理模式的实现非常复杂。
使用场景: 按职责来划分,通常有以下使用场景: 1、远程代理。 2、虚拟代理。 3、Copy-on-Write 代理。 4、保护(Protect or Access)代理。 5、Cache代理。 6、防火墙(Firewall)代理。 7、同步化(Synchronization)代理。 8、智能引用(Smart Reference)代理。
注意事项: 1、和适配器模式的区别:适配器模式主要改变所考虑对象的接口,而代理模式不能改变所代理类的接口。 2、和装饰器模式的区别:装饰器模式为了增强功能,而代理模式是为了加以控制。
实现
我们将创建一个 Image 接口和实现了 Image 接口的实体类。ProxyImage 是一个代理类,减少 RealImage 对象加载的内存占用。
ProxyPatternDemo ,我们的演示类使用 ProxyImage 来获取要加载的 Image 对象,并按照需求进行显示。
1、创建一个接口。
Image.java
1 2 3 public interface Image { void display () ; }
2、创建实现接口的实体类。
RealImage.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 public class RealImage implements Image { private String fileName; public RealImage (String fileName) { this .fileName = fileName; loadFromDisk(fileName); } @Override public void display () { System.out.println("Displaying " + fileName); } private void loadFromDisk (String fileName) { System.out.println("Loading " + fileName); } }
ProxyImage.java (核心类)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 public class ProxyImage implements Image { private RealImage realImage; private String fileName; public ProxyImage (String fileName) { this .fileName = fileName; } @Override public void display () { if (realImage == null ){ realImage = new RealImage (fileName); } realImage.display(); } }
3、当被请求时,使用 ProxyImage 来获取 RealImage 类的对象。
ProxyPatternDemo.java
1 2 3 4 5 6 7 8 9 10 11 12 public class ProxyPatternDemo { public static void main (String[] args) { Image image = new ProxyImage ("test_10mb.jpg" ); image.display(); System.out.println("" ); image.display(); } }
执行程序,输出结果:
1 2 3 4 Loading test_10mb.jpg Displaying test_10mb.jpg Displaying test_10mb.jpg
外观模式 外观模式(Facade Pattern)隐藏系统的复杂性,并向客户端提供了一个客户端可以访问系统的接口。这种类型的设计模式属于结构型模式,它向现有的系统添加一个接口,来隐藏系统的复杂性。
这种模式涉及到一个单一的类,该类提供了客户端请求的简化方法和对现有系统类方法的委托调用。
介绍
意图: 为子系统中的一组接口提供一个一致的界面,外观模式定义了一个高层接口,这个接口使得这一子系统更加容易使用。
主要解决: 降低访问复杂系统的内部子系统时的复杂度,简化客户端与之的接口。
何时使用: 1、客户端不需要知道系统内部的复杂联系,整个系统只需提供一个”接待员”即可。 2、定义系统的入口。
如何解决: 客户端不与系统耦合,外观类与系统耦合。
关键代码: 在客户端和复杂系统之间再加一层,这一层将调用顺序、依赖关系等处理好。
应用实例: 1、去医院看病,可能要去挂号、门诊、划价、取药,让患者或患者家属觉得很复杂,如果有提供接待人员,只让接待人员来处理,就很方便。 2、JAVA 的三层开发模式。
优点: 1、减少系统相互依赖。 2、提高灵活性。 3、提高了安全性。
缺点: 不符合开闭原则,如果要改东西很麻烦,继承重写都不合适。
使用场景: 1、为复杂的模块或子系统提供外界访问的模块。 2、子系统相对独立。 3、预防低水平人员带来的风险。
注意事项: 在层次化结构中,可以使用外观模式定义系统中每一层的入口。
实现
我们将创建一个 Shape 接口和实现了 Shape 接口的实体类。下一步是定义一个外观类 ShapeMaker 。
ShapeMaker 类使用实体类来代表用户对这些类的调用。FacadePatternDemo ,我们的演示类使用 ShapeMaker 类来显示结果。
1、创建一个接口
Shape.java
1 2 3 public interface Shape { void draw () ; }
2、创建实现接口的实体类
Rectangle.java
1 2 3 4 5 6 7 public class Rectangle implements Shape { @Override public void draw () { System.out.println("Rectangle::draw()" ); } }
Square.java
1 2 3 4 5 6 7 public class Square implements Shape { @Override public void draw () { System.out.println("Square::draw()" ); } }
Circle.java
1 2 3 4 5 6 7 public class Circle implements Shape { @Override public void draw () { System.out.println("Circle::draw()" ); } }
3、创建一个外观类
ShapeMaker.java (核心类)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public class ShapeMaker { private Shape circle; private Shape rectangle; private Shape square; public ShapeMaker () { circle = new Circle (); rectangle = new Rectangle (); square = new Square (); } public void drawCircle () { circle.draw(); } public void drawRectangle () { rectangle.draw(); } public void drawSquare () { square.draw(); } }
4、使用该外观类画出各种类型的形状
FacadePatternDemo.java
1 2 3 4 5 6 7 8 9 public class FacadePatternDemo { public static void main (String[] args) { ShapeMaker shapeMaker = new ShapeMaker (); shapeMaker.drawCircle(); shapeMaker.drawRectangle(); shapeMaker.drawSquare(); } }
执行程序,输出结果:
1 2 3 Circle::draw() Rectangle::draw() Square::draw()
组合模式 组合模式(Composite Pattern),又叫部分整体模式,是用于把一组相似的对象当作一个单一的对象。组合模式依据树形结构来组合对象,用来表示部分以及整体层次。这种类型的设计模式属于结构型模式,它创建了同类型对象组的树形结构 。
这种模式创建了一个包含自己对象组的类。该类提供了修改相同对象组的方式。
我们通过下面的实例来演示组合模式的用法。实例演示了一个组织中员工的层次结构。
介绍
意图: 将对象组合成树形结构以表示”部分-整体”的层次结构。组合模式使得用户对单个对象和组合对象的使用具有一致性。
主要解决: 它在我们树型结构的问题中,模糊了简单元素和复杂元素的概念,客户程序可以像处理简单元素一样来处理复杂元素,从而使得客户程序与复杂元素的内部结构解耦。
何时使用: 1、您想表示对象的部分-整体层次结构(树形结构)。 2、您希望用户忽略组合对象与单个对象的不同,用户将统一地使用组合结构中的所有对象。
如何解决: 树枝和叶子实现统一接口,树枝内部组合该接口。
关键代码: 树枝内部组合该接口,并且含有内部属性 List,里面放 Component。
应用实例: 1、算术表达式包括操作数、操作符和另一个操作数,其中,另一个操作符也可以是操作数、操作符和另一个操作数。 2、在 JAVA AWT 和 SWING 中,对于 Button 和 Checkbox 是树叶,Container 是树枝。
优点: 1、高层模块调用简单。 2、节点自由增加。
缺点: 在使用组合模式时,其叶子和树枝的声明都是实现类,而不是接口,违反了依赖倒置原则。
使用场景: 部分、整体场景,如树形菜单,文件、文件夹的管理。
注意事项: 定义时为具体类。
实现
我们有一个类 Employee ,该类被当作组合模型类。CompositePatternDemo ,我们的演示类使用 Employee 类来添加部门层次结构,并打印所有员工。
1、创建 Employee 类,该类带有 Employee 对象的列表
Employee.java (核心类)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 import java.util.ArrayList;import java.util.List; public class Employee { private String name; private String dept; private int salary; private List<Employee> subordinates; public Employee (String name,String dept, int sal) { this .name = name; this .dept = dept; this .salary = sal; subordinates = new ArrayList <Employee>(); } public void add (Employee e) { subordinates.add(e); } public void remove (Employee e) { subordinates.remove(e); } public List<Employee> getSubordinates () { return subordinates; } public String toString () { return ("Employee :[ Name : " + name +", dept : " + dept + ", salary :" + salary+" ]" ); } }
2、使用 Employee 类来创建和打印员工的层次结构
CompositePatternDemo.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 public class CompositePatternDemo { public static void main (String[] args) { Employee CEO = new Employee ("John" ,"CEO" , 30000 ); Employee headSales = new Employee ("Robert" ,"Head Sales" , 20000 ); Employee headMarketing = new Employee ("Michel" ,"Head Marketing" , 20000 ); Employee clerk1 = new Employee ("Laura" ,"Marketing" , 10000 ); Employee clerk2 = new Employee ("Bob" ,"Marketing" , 10000 ); Employee salesExecutive1 = new Employee ("Richard" ,"Sales" , 10000 ); Employee salesExecutive2 = new Employee ("Rob" ,"Sales" , 10000 ); CEO.add(headSales); CEO.add(headMarketing); headSales.add(salesExecutive1); headSales.add(salesExecutive2); headMarketing.add(clerk1); headMarketing.add(clerk2); System.out.println(CEO); for (Employee headEmployee : CEO.getSubordinates()) { System.out.println(headEmployee); for (Employee employee : headEmployee.getSubordinates()) { System.out.println(employee); } } } }
执行程序,输出结果为:
1 2 3 4 5 6 7 Employee :[ Name : John, dept : CEO, salary :30000 ] Employee :[ Name : Robert, dept : Head Sales, salary :20000 ] Employee :[ Name : Richard, dept : Sales, salary :10000 ] Employee :[ Name : Rob, dept : Sales, salary :10000 ] Employee :[ Name : Michel, dept : Head Marketing, salary :20000 ] Employee :[ Name : Laura, dept : Marketing, salary :10000 ] Employee :[ Name : Bob, dept : Marketing, salary :10000 ]
享元模式 享元模式(Flyweight Pattern)主要用于减少创建对象的数量,以减少内存占用和提高性能。这种类型的设计模式属于结构型模式,它提供了减少对象数量从而改善应用所需的对象结构的方式。
享元模式尝试重用现有的同类对象,如果未找到匹配的对象,则创建新对象。我们将通过创建 5 个对象来画出 20 个分布于不同位置的圆来演示这种模式。由于只有 5 种可用的颜色,所以 color 属性被用来检查现有的 Circle 对象。
介绍
意图: 运用共享技术有效地支持大量细粒度的对象。
主要解决: 在有大量对象时,有可能会造成内存溢出,我们把其中共同的部分抽象出来,如果有相同的业务请求,直接返回在内存中已有的对象,避免重新创建。
何时使用: 1、系统中有大量对象。 2、这些对象消耗大量内存。 3、这些对象的状态大部分可以外部化。 4、这些对象可以按照内蕴状态分为很多组,当把外蕴对象从对象中剔除出来时,每一组对象都可以用一个对象来代替。 5、系统不依赖于这些对象身份,这些对象是不可分辨的。
如何解决: 用唯一标识码判断,如果在内存中有,则返回这个唯一标识码所标识的对象。
关键代码: 用 HashMap 存储这些对象。
应用实例: 1、JAVA 中的 String,如果有则返回,如果没有则创建一个字符串保存在字符串缓存池里面。 2、数据库的数据池。
优点: 大大减少对象的创建,降低系统的内存,使效率提高。
缺点: 提高了系统的复杂度,需要分离出外部状态和内部状态,而且外部状态具有固有化的性质,不应该随着内部状态的变化而变化,否则会造成系统的混乱。
使用场景: 1、系统有大量相似对象。 2、需要缓冲池的场景。
注意事项: 1、注意划分外部状态和内部状态,否则可能会引起线程安全问题。 2、这些类必须有一个工厂对象加以控制。
实现
我们将创建一个 Shape 接口和实现了 Shape 接口的实体类 Circle 。下一步是定义工厂类 ShapeFactory 。
ShapeFactory 有一个 Circle 的 HashMap ,其中键名为 Circle 对象的颜色。无论何时接收到请求,都会创建一个特定颜色的圆。ShapeFactory 检查它的 HashMap 中的 circle 对象,如果找到 Circle 对象,则返回该对象,否则将创建一个存储在 hashmap 中以备后续使用的新对象,并把该对象返回到客户端。
FlyWeightPatternDemo ,我们的演示类使用 ShapeFactory 来获取 Shape 对象。它将向 ShapeFactory 传递信息(red / green / blue/ black / white ),以便获取它所需对象的颜色。
1、创建一个接口
Shape.java
1 2 3 public interface Shape { void draw () ; }
2、创建实现接口的实体类
Circle.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 public class Circle implements Shape { private String color; private int x; private int y; private int radius; public Circle (String color) { this .color = color; } public void setX (int x) { this .x = x; } public void setY (int y) { this .y = y; } public void setRadius (int radius) { this .radius = radius; } @Override public void draw () { System.out.println("Circle: Draw() [Color : " + color +", x : " + x +", y :" + y +", radius :" + radius); } }
3、创建一个工厂,生成基于给定信息的实体类的对象
ShapeFactory.java (核心类)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 import java.util.HashMap; public class ShapeFactory { private static final HashMap<String, Shape> circleMap = new HashMap <>(); public static Shape getCircle (String color) { Circle circle = (Circle)circleMap.get(color); if (circle == null ) { circle = new Circle (color); circleMap.put(color, circle); System.out.println("Creating circle of color : " + color); } return circle; } }
4、使用该工厂,通过传递颜色信息来获取实体类的对象
FlyweightPatternDemo.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 public class FlyweightPatternDemo { private static final String colors[] = { "Red" , "Green" , "Blue" , "White" , "Black" }; public static void main (String[] args) { for (int i=0 ; i < 20 ; ++i) { Circle circle = (Circle)ShapeFactory.getCircle(getRandomColor()); circle.setX(getRandomX()); circle.setY(getRandomY()); circle.setRadius(100 ); circle.draw(); } } private static String getRandomColor () { return colors[(int )(Math.random()*colors.length)]; } private static int getRandomX () { return (int )(Math.random()*100 ); } private static int getRandomY () { return (int )(Math.random()*100 ); } }
执行程序,输出结果:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 Creating circle of color : Black Circle: Draw() [Color : Black, x : 36 , y :71 , radius :100 Creating circle of color : Green Circle: Draw() [Color : Green, x : 27 , y :27 , radius :100 Creating circle of color : White Circle: Draw() [Color : White, x : 64 , y :10 , radius :100 Creating circle of color : Red Circle: Draw() [Color : Red, x : 15 , y :44 , radius :100 Circle: Draw() [Color : Green, x : 19 , y :10 , radius :100 Circle: Draw() [Color : Green, x : 94 , y :32 , radius :100 Circle: Draw() [Color : White, x : 69 , y :98 , radius :100 Creating circle of color : Blue Circle: Draw() [Color : Blue, x : 13 , y :4 , radius :100 Circle: Draw() [Color : Green, x : 21 , y :21 , radius :100 Circle: Draw() [Color : Blue, x : 55 , y :86 , radius :100 Circle: Draw() [Color : White, x : 90 , y :70 , radius :100 Circle: Draw() [Color : Green, x : 78 , y :3 , radius :100 Circle: Draw() [Color : Green, x : 64 , y :89 , radius :100 Circle: Draw() [Color : Blue, x : 3 , y :91 , radius :100 Circle: Draw() [Color : Blue, x : 62 , y :82 , radius :100 Circle: Draw() [Color : Green, x : 97 , y :61 , radius :100 Circle: Draw() [Color : Green, x : 86 , y :12 , radius :100 Circle: Draw() [Color : Green, x : 38 , y :93 , radius :100 Circle: Draw() [Color : Red, x : 76 , y :82 , radius :100 Circle: Draw() [Color : Blue, x : 95 , y :82 , radius :100