资源简介
设计模式的享元模式的例子,希望对大家有用~~~~~~~~
代码片段和文件信息
package com.hyw.task5.FlyweightPattern;
public class Client {
public static void main(String[] args){
FlyweightFactory factory = FlyweightFactory.getFactory();
String message1 = “你好“;
String message2 = “送你的礼物“;
String message3 = “不客气“;
String key = ““+message1+“#“+message2+“#“+message3;
Flyweight flyweight = factory.getFlyweight(key);
Message ms1 = new Message(flyweight“Ivy“);
Message ms2 = new Message(flyweight“Lucy“);
ms1.print();
ms2.print();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 506 2011-10-25 10:24 FlyweightPattern\Client.java
文件 198 2011-10-25 10:24 FlyweightPattern\Flyweight.java
文件 1462 2011-10-25 10:24 FlyweightPattern\FlyweightFactory.java
文件 436 2011-10-25 10:24 FlyweightPattern\Message.java
目录 0 2011-10-25 10:31 FlyweightPattern
----------- --------- ---------- ----- ----
2602 5
相关资源
- 软件体系结构实验报告设计模式
- 运用设计模式编写画图软件
- 《设计模式》(中文版) PDF
- 23种设计模式视频+源码.txt
- 设计模式课程设计
- 采用设计模式的画图程序
- CSharp设计模式(23种设计模式)
- go语言设计模式
- 重构+设计模式两本pdf经典书
- GOF设计模式超清晰中文.pdf
-
design patterns elements of reusable ob
ject - chapter 5软件设计模式.ppt
- 软件设计师历年设计模式试题总结
- 浪曦UML设计模式视频教程
- 设计模式 几种模式结合
- 软件设计模式实验报告
- 深入浅出设计模式四——比萨店生产
- 设计模式-策略者
- 吉林大学软件学院卓班设计模式第二
- Gobang.rar
- 设计模式期末复习资料
- 文件导入导出器使用多种设计模式
- 设计模式刘伟著源代码
- 软件体系结构设计模式作业
- 2016-2017第2学期《设计模式》期末考试
评论
共有 条评论