The 'Gof Singleton Pattern' Tag Archive

Below you'll find all my writing tagged with the word Gof Singleton Pattern. The posts are listed in chronological order. Click the post title to read more.

August 17th, 2009

Thoughts on Singleton Design Pattern – Good Bad Ugly

– Sponsored Ads —

Singleton patternis one of the best-known patterns in software engineering. Essentially, a singleton is a class which only allows a single instance of itself to be created, and usually gives simple access to that instance. Most commonly, singletons don’t allow any parameters to be specified when creating the instance – as [...]

August 1st, 2009

GoF Design Patterns Template

The GoF design patterns are in the middle of these levels of abstraction
A design pattern names, abstracts, and identifies key aspects of a common design structure that makes it useful for creating a reusable object-oriented design.
– Sponsored Ads —

The GoF design patterns are
descriptions of communicating objects and classes that are customized to solve a [...]