RosettaCodeData/Task/Singleton/00DESCRIPTION

5 lines
196 B
Plaintext

A Global Singleton is a class of which only one instance exists within a program.
Any attempt to use non-static members of the class involves performing operations on this one instance.
<br><br>