Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

GoF Design Patterns-Object-Oriented Design-Lecture 20 Slides-Computer Engineering, Slides of Object Oriented Analysis and Design

GoF Design Patterns, Software Patterns, Factory Method, Abstract Factory, Builder, Prototype, Singleton, Raman Ramsin, Lecture Slides, Object Oriented Design, Department of Computer Engineering, Sharif University of Technology, Iran.

Typology: Slides

2011/2012

Uploaded on 02/19/2012

hester
hester 🇮🇷

4.5

(13)

85 documents

1 / 22

Toggle sidebar

Related documents


Partial preview of the text

Download GoF Design Patterns-Object-Oriented Design-Lecture 20 Slides-Computer Engineering and more Slides Object Oriented Analysis and Design in PDF only on Docsity!

Department of Computer Engineering

Sharif University of Technology

Object-Oriented Design

Lecturer: Raman Ramsin

Lecture 20 :

GoF Design Patterns – Creational

Department of Computer Engineering

Sharif University of Technology

Software Patterns  Software Patterns support reuse of software architecture and design.  Patterns capture the static and dynamic structures and collaborations of successful solutions to problems that arise when building applications in a particular domain.  Patterns represent solutions to problems that arise when developing software within a particular context.  i.e., “Pattern == problem/solution pair in a context”

Department of Computer Engineering

Sharif University of Technology

GoF Design Patterns – Principles  Emphasis on flexibility and reuse through decoupling of classes.  The underlying principles:  program to an interface, not to an implementation.  favor composition over class inheritance.  find what varies and encapsulate it.

Department of Computer Engineering

Sharif University of Technology

GoF Design Patterns: General Categories  23 patterns are divided into three separate categories:  Creational patterns  Deal with initializing and configuring classes and objects.  Structural patterns  Deal with decoupling interface and implementation of classes and objects.  Behavioral patterns  Deal with dynamic interactions among societies of classes and objects.

Department of Computer Engineering

Sharif University of Technology

GoF Design Patterns: Purpose and Scope

Department of Computer Engineering

Sharif University of Technology

GoF Creational Patterns  ClassFactory Method: Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory method lets a class defer instantiation to subclasses.  ObjectAbstract Factory: Provide an interface for creating families of related or dependent objects without specifying their concrete class.  Builder: Separate the construction of a complex object from its representation so that the same construction process can create different representations.  Prototype: Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.  Singleton: Ensure a class only has one instance, and provide a global point of access to it.

Department of Computer Engineering

Sharif University of Technology

Factory Method  Intent:  Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses.

Department of Computer Engineering

Sharif University of Technology

Factory Method: Applicability  Use the Factory Method pattern when  a class can't anticipate the class of objects it must create.  a class wants its subclasses to specify the objects it creates.  classes delegate responsibility to one of several helper subclasses, and you want to localize the knowledge of which helper subclass is the delegate.

Department of Computer Engineering

Sharif University of Technology

Factory Method: Structure

Department of Computer Engineering

Sharif University of Technology

Abstract Factory  Intent:  Provide an interface for creating families of related or dependent objects without specifying their concrete classes.

Department of Computer Engineering

Sharif University of Technology

Abstract Factory: Applicability  Use the Abstract Factory pattern when  a system should be independent of how its products are created, composed, and represented.  a system should be configured with one of multiple families of products.  a family of related product objects is designed to be used together, and you need to enforce this constraint.  you want to provide a class library of products, and you want to reveal just their interfaces, not their implementations.

Department of Computer Engineering

Sharif University of Technology

Abstract Factory: Structure

Department of Computer Engineering

Sharif University of Technology

Builder  Intent:  Separate the construction of a complex object from its representation so that the same construction process can create different representations.

Department of Computer Engineering

Sharif University of Technology

Builder: Applicability  Use the Builder pattern when  the algorithm for creating a complex object should be independent of the parts that make up the object and how they're assembled.  the construction process must allow different representations for the object that's constructed.

Department of Computer Engineering

Sharif University of Technology

Builder: Structure

Department of Computer Engineering

Sharif University of Technology

Builder: Collaborations

Department of Computer Engineering

Sharif University of Technology

Prototype  Intent:  Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.

Department of Computer Engineering

Sharif University of Technology

Prototype: Applicability  Use the Prototype pattern when  the classes to instantiate are specified at run-time, for example, by dynamic loading.  building a class hierarchy of factories that parallels the class hierarchy of products should be avoided.  instances of a class can have one of only a few different combinations of state.  It may be more convenient to install a corresponding number of prototypes and clone them rather than instantiating the class manually.

Department of Computer Engineering

Sharif University of Technology

Prototype: Structure

Department of Computer Engineering

Sharif University of Technology

Singleton  Intent:  Ensure a class only has one instance, and provide a global point of access to it.

Department of Computer Engineering

Sharif University of Technology

Singleton: Applicability  Use the Singleton pattern when  there must be exactly one instance of a class, and it must be accessible to clients from a well known access point.  when the sole instance should be extensible by subclassing, and clients should be able to use an extended instance without modifying their code.

Department of Computer Engineering

Sharif University of Technology

Reference  Gamma, E., Helm, R., Johnson, R., and Vlissides, J., Design Patterns: Elements of Reusable Object-oriented Software. Addison-Wesley, 1995.