随笔分类 - 设计模式 / 创建型设计模式
摘要:The Creational Design Pattern are Categorized into two types. Object-Creational Patterns: Object -Creational Patterns deal with object creation. Here,
阅读全文
摘要:The Singleton Design Pattern ensure a class has only one instance and provide a global point of access to it. UML Class Diagram The following are teh
阅读全文
摘要:The Abstract Factory Design Pattern provides a way to encapsulate a group of individual factories that have a common theme without specifying their co
阅读全文
摘要:The Prototype design pattern specifies the kind of objects to create using a prototypical instance, and create new objects by copying this prototype.
阅读全文
摘要:The Factory Method design pattern defines an interface for creating an object , but let subclasses decide which class to instantiate. This pattern let
阅读全文