Structural Design Patterns
Bài đăng này đã không được cập nhật trong 5 năm
Structural Design Patterns
Giới thiệu
"Structural patterns bao gồm nhóm các patterns dùng để xây dựng hệ thống phân cấp class đơn giản và hiệu quả và mối quan hệ giữa các class khác nhau."
Đó là:
- Adapter Match interfaces of different classes
- Bridge Separates an object’s interface from its implementation
- Composite Một cấu trúc cây của các đối tượng đơn giản và tổng hợp
- Decorator Add responsibilities to objects dynamically
- Facade A single class that represents an entire subsystem
- Flyweight A fine-grained instance used for efficient sharing
- Private Class Data Restricts accessor/mutator access
- Proxy An object representing another object
Tham chiếu:
All rights reserved