Flyweight - a.k.a Cache
메모리 절약하기
Intent
Flyweight is a structural design pattern that lets you fit more objects into the available amount of RAM by sharing common parts of state between multiple objects instead of keeping all of the data in each object.
Implementation

Applicablity
- 캐싱
Code Examples
실행 결과