索引

意图

运用共享技术有效地支持大量细粒度的对象。

Use sharing to support large numbers of fine-grained objects efficiently.

结构

下面的对象图说明了如何共享 Flyweight:

参与者

Flyweight

  • 描述一个接口,通过这个接口 Flyweight 可以接受并作用于外部状态。

ConcreteFlyweight

  • 实现 Flyweight 接口,并为内部状态增加存储空间。该对象必须是可共享的。它所存储的状态必须是内部的,即必须独立于对象的场景。

UnsharedConcreteFlyweight

  • 并非所有的 Flyweight 子类都需要被共享。Flyweight 接口使共享成为可能,但它并不强制共享。

FlyweightFactory

  • 创建并管理 Flyweight 对象。
  • 确保合理地共享 Flyweight。

Client

  • 维持一个对 Flyweight 的引用。
  • 计算或存储 Flyweight 的外部状态。

适用性

Flyweight 模式的有效性很大程度上取决于如何使用它以及在何处使用它。

当以下情况成立时可以使用 Flyweight 模式:

  • 一个应用程序使用了大量的对象。
  • 完全由于使用大量对象,造成很大的存储开销。
  • 对象的大多数状态都可变为外部状态。
  • 如果删除对象的外部状态,那么可以用相对较少的共享对象取代很多组对象。
  • 应用程序不依赖于对象标识。

效果

  • 存储空间上的节省抵消了传输、查找和计算外部状态时的开销。节约量随着共享状态的增多而增大。

相关模式

  • Flyweight 模式通常和 Composite 模式结合起来,用共享叶节点的又向无环图实现一个逻辑上的层次结构。
  • 通常,最好用 Flyweight 实现 State 和 Strategy 对象。

实现

实现方式(一):使用 FlyweightFactory 管理 Flyweight 对象。

Flyweight 模式的可用性在很大程度上取决于是否易识别外部状态并将它从共享对象中删除。

理想的状况是,外部状态可以由一个单独的对象结构计算得到,且该结构的存储要求非常小。

通常,因为 Flyweight 对象是共享的,用户不能直接对它进行实例化,因为 FlyweightFactory 可以帮助用户查找某个特定的 Flyweight 对象。

共享还意味着某种形式的引用计数和垃圾回收。

 namespace FlyweightPattern.Implementation1
{
public abstract class Flyweight
{
public abstract string Identifier { get; }
public abstract void Operation(string extrinsicState);
} public class ConcreteFlyweight : Flyweight
{
public override string Identifier
{
get { return "hello"; }
} public override void Operation(string extrinsicState)
{
// do something
}
} public class FlyweightFactory
{
private Dictionary<string, Flyweight> _pool
= new Dictionary<string, Flyweight>(); public Flyweight CreateFlyweight(string identifier)
{
if (!_pool.ContainsKey(identifier))
{
Flyweight flyweight = new ConcreteFlyweight();
_pool.Add(flyweight.Identifier, flyweight);
} return _pool[identifier];
}
} public class Client
{
public void TestCase1()
{
FlyweightFactory factory = new FlyweightFactory();
Flyweight flyweight1 = factory.CreateFlyweight("hello");
Flyweight flyweight2 = factory.CreateFlyweight("hello");
flyweight1.Operation("extrinsic state");
flyweight2.Operation("extrinsic state");
}
}
}

设计模式之美》为 Dennis Gao 发布于博客园的系列文章,任何未经作者本人同意的人为或爬虫转载均为耍流氓。

最新文章

  1. ng-option指令使用记录,设置默认值需要注意
  2. 关系型数据库与NOSQL
  3. iOS多线程
  4. Django中Form的Textarea字段
  5. 并查集(加权) LA 4487 Exclusive-OR
  6. nginx反向代理编译异常
  7. x86-64_register_and_function_frame.html
  8. 使用邮件监控Mxnet训练
  9. win10 UWP 圆形等待
  10. 1、libgdx简介
  11. Dapper官方库 在guid和string互转的问题
  12. [SCOI2007]压缩(区间dp)
  13. Spring Cloud源码分析(四)Zuul:核心过滤器
  14. 导入贴图操作:处理贴图MaxSize和Format
  15. 快速切题 cf118A
  16. Financial Information Exchange (FIX) Protocol Interview Questions Answers[z]
  17. windows下nginx访问web目录提示403 Forbidden
  18. Windows MFC 打开文本
  19. javascript 变量类型判断
  20. jquery点击li 获取当前父节点所在类的索引

热门文章

  1. An attempt was made to load a program with an incorrect format
  2. dubbo 使用总结
  3. GWT资料收集
  4. eval 函数的应用 (去除包装在列表外面的引号)
  5. apache 泛域名配置
  6. BigDecimal最基础用法
  7. 一步一步写平衡二叉树(AVL树)
  8. 修改Tomcat根目录
  9. Z - Fighting 和 Depth-bias
  10. 01背包问题:POJ3624