- Singleton là pattern tạo ra một instance duy nhất của một class
- Lazy singleton tạo instance khi được sử dụng
- Double checked singleton đảm bảo tạo singleton trong môi trường mutilthread
- BillPugh singleton tạo singleton bằng cách sử dụng static inner class
Source code ở đây