15
Factory Method Pattern Shahriar Iqbal Chowdhury & Monjurul Habib Code Name: Remington http://www.facebook.com/groups/netter/

Factory method pattern

Embed Size (px)

DESCRIPTION

Factory Method Design Pattern Explained

Citation preview

Page 1: Factory method pattern

Factory Method Pattern

Shahriar Iqbal Chowdhury & Monjurul Habib

                                Code Name: Remington

                       

                            http://www.facebook.com/groups/netter/

Page 2: Factory method pattern

Why We need Factory? Caveman Example

Page 3: Factory method pattern
Page 4: Factory method pattern

The Solution

Page 5: Factory method pattern

A specialist for the job

Page 6: Factory method pattern

Factory Pattern Method Basics

• Creational Pattern• Which object to create• It lets a class defer instantiation to subclasses.• Absolutely all constructors should be private or protected• Also known as Virtual Constructor.

Page 7: Factory method pattern

When to consider?

• When we have a class that implements an interface but not sure which object, which concrete instantiation / implementation need to return.• When we need to separate instantiation from the representation.• When we have lots of select and switch statements for deciding which concrete class to create and return.

Page 8: Factory method pattern

Factory Says

Define an interface for creating an object, but let subclasses decide which class to instantiate

Page 9: Factory method pattern

Problem without Factory Method Pattern

Page 10: Factory method pattern

Solution Applying Factory Method Pattern

Page 11: Factory method pattern

Banking Account Management System

Page 12: Factory method pattern

Object is created based on configuration parameters

Page 13: Factory method pattern

Violation of OCP (Open Close Principle of SOLID)

Page 14: Factory method pattern

we will need to create a property that indicates type in each account class

Page 15: Factory method pattern