Skip to content

csc301-fall2014/AbstractFactoryExample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Factory Method Design Pattern

The factory method design pattern solves the following problem:

  • Your application code needs to create instances of type T.
  • T is an interface (or an abstract class) with different concrete implementations.
  • Your application code should not depend on any specific implementation of T.

As usual, we will develop our solution one step at a time.
Let's start from step 1.

About

An example of the Factory Method design pattern

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages