Description
Singleton is a creational design pattern, which ensures that only one object of its kind exists and provides a single point of access to it for any other code.
- Singleton là 1 creational design pattern.
- Giúp chắc chắn chỉ có duy nhất 1 object được tạo và truy xuất ở bất kì đâu. Eg: Kết nối DB, Notification,..-> Có thể dùng global variable nhưng sẽ phá vỡ tính đóng gói (encapsulation) của OOP.
8/8/25Less than 1 minute