Definitions for "Singleton" Add To Word List
Login or Register  | Word Lists | Search History

a single object (as distinguished from a pair)
Helpful?           0
a class for which only one instance can exist within a program
Helpful?           0
a class for which there will be only one instance in the entire course of a run, and which will exist for pretty much the entire run
Helpful?           0
a class guaranteed to have only a single instance, with a single global access point to that instance
Helpful?           0
a classic design pattern that allows you to make sure you have one and only one instance of a given class
Helpful?           0
a class that assures existence of a maximum of one object of its type at a given time, and provides a global access point to this object
Helpful?           0
a class that can only be instantiated one time
Helpful?           0
a class that has exactly one instance
Helpful?           0
a class that makes sure only one instance of it is ever created
Helpful?           0
a class that only ever has one instance and provides a global way of accessing it
Helpful?           0
a class that supports the creation of just one object
Helpful?           0
a class which guarantees that there is no more than one instance of it (while there might be no instance also)
Helpful?           0
a class which owns an instance of the same class as itself
Helpful?           0
a class with just one instance
Helpful?           0
a design pattern -- frequently occurring code specification -- in which only a single object can ever be created from a class
Helpful?           0
a design pattern that makes one single instance of a class
Helpful?           0
a design pattern that specifies a particular object will only have a single instantiation
Helpful?           0
an class that can be instantiated once, and only once
Helpful?           0
an object class that can have only one instance in any system
Helpful?           0
an object, only one instance of which will ever exist
Helpful?           0
an object that cannot be instantiated
Helpful?           0
an object that has and can have no more than one instance
Helpful?           0
an object that has at most one instance of itself in memory at any given time
Helpful?           0
an object that only has one instance in a system at any time
Helpful?           0
an option, but I like the above syntax better and we don't need lazy instantiation
Helpful?           0
a type, but it is not a class
Helpful?           0
a very simple design pattern which allows you to restrict a class to a
Helpful?           0
A type used to indicate an individual object. A singleton has only one instance.
Helpful?           0