dart设计模式之享元模式
【摘要】 享元模式(Flyweight)模式分析享元模式(Flyweight Pattern)主要用于减少创建对象的数量,以减少内存占用和提高性能。这种类型的设计模式属于结构型模式,它提供了减少对象数量从而改善应用所需的对象结构的方式。享元模式尝试重用现有的同类对象,如果未找到匹配的对象,则创建新对象。我们将通过创建 5 个对象来画出 20 个分布于不同位置的圆来演示这种模式。由于只有 5 种可用的颜...
享元模式(Flyweight)
模式分析
享元模式(Flyweight Pattern)主要用于减少创建对象的数量,以减少内存占用和提高性能。这种类型的设计模式属于结构型模式,它提供了减少对象数量从而改善应用所需的对象结构的方式。
模式难点
使用Map讲重复创建的对象进行存储,需要严格分离出外部状态和内部状态
模式解决问题
在有大量对象时,有可能会造成内存溢出,我们把其中共同的部分抽象出来,如果有相同的业务请求,直接返回在内存中已有的对象,避免重新创建。
优点
大大减少对象的创建,降低系统的内存,使效率提高。
缺点
提高了系统的复杂度,需要分离出外部状态和内部状态,而且外部状态具有固有化的性质,不应该随着内部状态的变化而变化,否则会造成系统的混乱。
模式应用场景
-
系统有大量相似对象。
-
需要缓冲池的场景。
模式代码
import 'dart:math' as math;
import 'run.dart';
abstract class Shape {
void draw();
}
// 创建实现接口的实体类。
class Circle implements Shape {
String color;
int x;
int y;
int radius;
Circle(String color) {
this.color = color;
}
void setX(int x) {
this.x = x;
}
void setY(int y) {
this.y = y;
}
void setRadius(int radius) {
this.radius = radius;
}
@override
void draw() {
print("Circle: Draw() [Color : " +
color +
", x : " +
x.toString() +
", y :" +
y.toString() +
", radius :" +
radius.toString());
}
}
// 创建一个工厂,生成基于给定信息的实体类的对象。
class ShapeFactory {
static final Map<String, Shape> circleMap = new Map();
static Shape getCircle(String color) {
Circle circle = circleMap[color];
if (circle == null) {
circle = new Circle(color);
circleMap[color] = circle;
print("Creating circle of color : " + color);
}
return circle;
}
}
class RunFlyweight implements Run {
final List<String> colors = ["Red", "Green", "Blue", "White", "Black"];
@override
void main() {
for (int i = 0; i < 20; ++i) {
Circle circle = ShapeFactory.getCircle(getRandomColor());
circle.setX(getRandomX());
circle.setY(getRandomY());
circle.setRadius(100);
circle.draw();
}
}
String getRandomColor() {
return colors[math.Random().nextInt(colors.length)];
}
int getRandomX() {
return math.Random().nextInt(100);
}
int getRandomY() {
return math.Random().nextInt(100);
}
@override
String name = "享元模式";
}
下一篇:代理模式
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)