Tag: Design Patterns

  • What is Singleton design pattern?

    Whenever we need to restrict instantiation of a class to one object, then we use Singleton design Pattern. The Singleton is intended to provide a way to ensure that a class provides one instance of itself, and to provide a global point of access. The Singleton class is responsible for instantiating itself and passing that…

  • Design Patterns in Software Development

    If you are from computer science or any other engineering background then you must be familiar of programming languages. C is first powerful language in computer programming . It was developed in 1972 by Dennis Ritchie at the Bell Labs. Since then in 36 years dozens of programming languages come into picture. One powerful concept…