Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions singleton/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ tag:
* Single Instance

## Intent of Singleton Design Pattern
The Singleton pattern is used when exactly one instance of a class is needed to coordinate actions across the system.

Ensure a Java class only has one instance, and provide a global point of access to this singleton instance.

Expand Down
Loading