Skip to content

Files

Latest commit

Apr 29, 2024
2a71b69 · Apr 29, 2024

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 10, 2023
Apr 10, 2023
Apr 29, 2024
Jan 30, 2023

README.md

代码结构

- src
  - Flyweight.go # 定义抽象享元接口
  - ConcreteFlyweight.go # 具体享元角色,实现抽象接口,用于共享状态
  - UnsharedConcreteFlyweight.go # 无需共享的角色,实现抽象接口,每次都是新实例
  - FlyweightFactory.go # 享元工厂,储存一个对象共享池

测试验证

$ cd ./flyweight-pattern/go
$ go run test/test.go