Singleton Design Pattern

Jan 03, 10 Singleton Design Pattern

Posted by in Design Patterns, Programming

The Singleton design pattern is a creational pattern that allows many parts of a program to share a single resource without having to work out the details of the sharing themselves. Across the program you will have one and only one instance of the class modifying a property will modify it across the whole program. Consider using...

read more

Introduction into Design Patterns

Sep 05, 09 Introduction into Design Patterns

Posted by in Design Patterns, Programming

Introduction In software engineering, a design pattern is a general repeatable solution to a commonly occurring problem in software design. A design pattern isn’t a finished design that can be transformed directly into code. It is a description or template for how to solve a problem that can be used in many different...

read more