ECE450 – Software Engineering II – the User Can Group Components to Form Larger Components

Total Page:16

File Type:pdf, Size:1020Kb

ECE450 – Software Engineering II – the User Can Group Components to Form Larger Components Think of drawing/diagramming editors • Drawing/diagramming editors let users build complex diagrams out of simple components ECE450 – Software Engineering II – The user can group components to form larger components... – ...which in turn can be grouped to form still larger components Today: Design Patterns VI Composite, Iterator, and Visitor Patterns ECE450 - Software Engineering II 1 ECE450 - Software Engineering II 2 The problem The Composite pattern • Although we grouped the shapes, the system should not treat the result as a “primitive” shape – Even if most of the time we treat them identically – We may decide to ungroup them • Or to modify an attribute of one of the components of the grouped shape •The Composite pattern describes how to use recursive composition so that clients don’t have to make this distinction. • Composite: Compose objects into tree structures to represent part-whole hierarchies. Composite lets clients treat individual objects and compositions of objects uniformly – The key to the pattern is the abstract class that represents both primitives and their containers. ECE450 - Software Engineering II 3 ECE450 - Software Engineering II 4 1 Structure and participants Structure and participants (cont) • Component – Declares the interface for objects in the composition •Composite – Implements default behavior for the interface common to all classes – Defines behavior for components having children – Declares an interface for accessing and managing its child components – Stores child components – (Optionally) defines an interface for accessing a component’s parent in the structure, and – Implements child-related operations in the Component interface implements it if appropriate • Client •Leaf – Manipulates objects in the composition through the Component interface – Represents leaf objects in the composition. A leaf has no children – Defines behavior for primitive objects in the composition ECE450 - Software Engineering II 5 ECE450 - Software Engineering II 6 Applicability Consequences • Use the Composite pattern when... • The pattern defines class hierarchies consisting of primitive objects and – You want to represent part-whole hierarchies of objects composite objects – You want clients to be able to ignore the difference between compositions of – Primitive objects can be composed into more complex objects, which in turn can objects and individual objects. be composed, and so on recursively. • Clients will treat all objects in the composite structure uniformly – Wherever client code expects a primitive object, it can also take a composite object • A second example: file systems • Makes the client simple – Directories contain entries, each of which could be a directory – Clients can treat composite structures and individual objects uniformly. – Clients don’t know (and shouldn’t care) whether they’re dealing with a leaf or a composite component • But can make your design overly general – The disadvantage of making it easy to add new components is that it makes it harder to restrict the components of a composite • Sometimes you want only some kinds of components, but you’ll have to use run-time checks to guarantee your constraints. ECE450 - Software Engineering II 7 ECE450 - Software Engineering II 8 2 That was it for structurals... Implementation Now we need to tackle behaviorals • Explicit parent references? • We’ve gone through the creational – You may want to maintain references from child components to their parent to patterns... simplify traversal and management of a composite structure – Factory method – Abstract factory – The usual place to define the parent reference is in the Component class –Builder –Prototype • Declaring the child management operations? –Singleton – Our diagram has the Component abstract class declare the Add and Remove • ... the structural ones... operations for managing children, but leaf nodes never use them –Decorator – Is it better to have those operations declared in the Composite class? – Adapter – Tradeoff between safety and transparency: – Facade • Defining the child management interface at the root gives you transparency (you can –Proxy treat all components uniformly) but costs you safety (clients may try to do meaningless – Flyweight things like add and remove objects from leaves!) – Bridge • Defining child management in the Composite class gives you safety (any attempt to add • ...and two behaviorals or remove objects from leaves will be caught at compile-time), but you lose transparency (leaves and composites have different interfaces). –Template method – Null object • What is the best data structure for storing components? • A (short) review is in order... – Depends on efficiency. It is possible that you don’t even need a general-purpose data structure at all! ECE450 - Software Engineering II 9 ECE450 - Software Engineering II 10 Behavioral patterns We’ll start with a simple one... • Behavioral patterns are concerned with algorithms and the assignment of • Assume you have an aggregate object such as a list responsibilities between objects – They describe not just patterns of objects or classes, but also the patterns of • This aggregate object should give you a way to access its elements communication between them without exposing its internal structure. – And you may want to traverse the list in different ways • However, adding the operations for different traversals to the List interface would bloat it – The List is there for a purpose different than supporting our traversals • And remember classes should do just one thing, if possible (maximizing cohesion) – Not only that, but you may want to traverse it more than once at the same time • How can we address this problem? ECE450 - Software Engineering II 11 ECE450 - Software Engineering II 12 3 The Iterator pattern Structure and participants • Iterator: Provide a way to access the elements of an aggregate object •Iterator sequentially without exposing its underlying representation – Defines an interface for accessing and traversing elements – You probably knew of this one already • ConcreteIterator • Java’s Iterator interface is an application of this principle – Implements the Iterator interface – Keeps track of the current position in the traversal of the aggregate • Aggregate – Defines an interface for creating an Iterator object • ConcreteAggregate – Implements the Iterator creation interface to return an instance of the proper ConcreteIterator ECE450 - Software Engineering II 13 ECE450 - Software Engineering II 14 Applicability Consequences • Use the Iterator pattern... • Iterators support variations in the traversal of an aggregate – To access an aggregate object’s contents without exposing its internal – Complex aggregates may be traversed in many ways. Iterator subclasses (or representation Iterator instances) allow clients to traverse the aggregate in the way they desire – To support multiple traversals of aggregate objects – To provide a uniform interface for traversing different aggregate structures • More than one traversal can be pending on an aggregate • That is, to support polymorphic iteration – An iterator keeps track of its own traversal state. Therefore, you can have more than one traversal in progress at once ECE450 - Software Engineering II 15 ECE450 - Software Engineering II 16 4 Implementation Operations on a compiler • Who controls the iteration? • Consider a compiler that represents programs as abstract syntax trees – When the client controls the iteration, the iterator is called an external iterator – Every node is a token (a variable, an assignment, etc.) • Clients must advance the traversal and request the next element explicitly – The compiler needs to perform operations on the trees for various kinds of – When the iterator controls it, the iterator is an internal iterator analyses • Clients hand an internal iterator an operation to perform, and the iterator applies that • Type-checking operation to every element in the aggregate • Code optimization • Who defines the traversal algorithm? • Flow analysis – It could be defined in the iterator (making it easy to use different iteration • ... algorithms in the same aggregate) or in the aggregate (probably necessary if we – Most of these operations will need to treat nodes that represent assignment need to access private variables of the aggregate) statements differently from nodes that represent variables or arithmetic expressions • Iterators for Composites • There will be one class for assignment statements, another for variable accesses, etc. – External iterators can be difficult to implement over recursive aggregate – Distributing all our operations across the various node classes leads to a system structures like Composites that is hard to understand, maintain, and change • They need to store a path through the Composite to keep track of the current object • It will be confusing to have type-checking code mixed with pretty-printing code • Null iterator – It would be better if each new operation could be added separately, and the – A null iterator always “is done” with the traversal node classes were independent on the operations that apply to them – They can make traversing tree-structured aggregates (like Composites) easier • Aggregate elements return a concrete iterator as usual • But leaf elements return an instance of NullIterator ECE450 - Software Engineering II 17 ECE450 - Software Engineering II 18 The Visitor pattern Participants and structure • Represent an operation to be • Visitor performed on the elements of – Declares a
Recommended publications
  • One-Slide Summary Lecture Outline
    Using Design Patterns #1 One-Slide Summary • Design patterns are solutions to recurring OOP design problems. There are patterns for constructing objects, structuring data, and object behavior . • Since this is PL, we’ll examine how language features like (multiple) inheritance and dynamic dispatch relate to design patterns. #2 Lecture Outline • Design Patterns • Iterator • Observer • Singleton • Mediator #3 1 What is a design pattern? • A solution for a recurring problem in a large object-oriented programming system – Based on Erich Gamma’s Ph.D. thesis, as presented in the “gang of four” book • “Each pattern describes a problem which occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice” – Charles Alexander #4 Types of design patterns • Design patterns can be (roughly) grouped into three categories: • Creational patterns – Constructing objects • Structural patterns – Controlling the structure of a class, e.g. affecting the API or the data structure layout • Behavioral patterns – Deal with how the object behaves #5 Iterator design pattern • Often you may have to move through a collection – Tree (splay, AVL, binary, red-black, etc.), linked list, array, hash table, dictionary, etc. • Easy for arrays and vectors • But hard for more complicated data structures – Hash table, dictionary, etc. • The code doing the iteration should not have to know the details of the data structure
    [Show full text]
  • Object-Oriented Analysis, Design and Implementation
    Undergraduate Topics in Computer Science Brahma Dathan Sarnath Ramnath Object-Oriented Analysis, Design and Implementation An Integrated Approach Second Edition Undergraduate Topics in Computer Science Undergraduate Topics in Computer Science (UTiCS) delivers high-quality instruc- tional content for undergraduates studying in all areas of computing and information science. From core foundational and theoretical material to final-year topics and applications, UTiCS books take a fresh, concise, and modern approach and are ideal for self-study or for a one- or two-semester course. The texts are all authored by established experts in their fields, reviewed by an international advisory board, and contain numerous examples and problems. Many include fully worked solutions. More information about this series at http://www.springer.com/series/7592 Brahma Dathan • Sarnath Ramnath Object-Oriented Analysis, Design and Implementation An Integrated Approach Second Edition 123 Brahma Dathan Sarnath Ramnath Department of Information and Computer Department of Computer Science Science and Information Technology Metropolitan State University St. Cloud State University St. Paul, MN St. Cloud, MN USA USA Series editor Ian Mackie Advisory Board Samson Abramsky, University of Oxford, Oxford, UK Karin Breitman, Pontifical Catholic University of Rio de Janeiro, Rio de Janeiro, Brazil Chris Hankin, Imperial College London, London, UK Dexter Kozen, Cornell University, Ithaca, USA Andrew Pitts, University of Cambridge, Cambridge, UK Hanne Riis Nielson, Technical University of Denmark, Kongens Lyngby, Denmark Steven Skiena, Stony Brook University, Stony Brook, USA Iain Stewart, University of Durham, Durham, UK A co-publication with the Universities Press (India) Private Ltd., licensed for sale in all countries outside of India, Pakistan, Bhutan, Bangladesh, Sri Lanka, Nepal, The Maldives, Middle East, Malaysia, Indonesia and Singapore.
    [Show full text]
  • Design Patterns Design Patterns
    Design Patterns CSC207 – Software Design Design Patterns • Design pattern: – A general description of the solution to a well- established problem using an arrangement of classes and objects. • Patterns describe the shape of code rather than the details. – There are lots of them in CSC 301 and 302. Loop patterns from first year • Loop pattern: – A general description of an algorithm for processing items in a collection. • All of you (hopefully) have some loop patterns in your heads. • You don’t really need to think about these any more; you just use them, and you should be able to discuss them with your fellow students. • Some first-year patterns: – Process List – Counted Loop – Accumulator – Sentinel Process list pattern • Purpose: to process every item in a collection where you don’t care about order or context; you don’t need to remember previous items. • Outline: • Example: • Other example: darken every pixel in a picture Counted loop pattern • Purpose: to process a range of indices in a collection. • Outline: • Example: • Other example: print indices of even-length string Accumulator pattern • Purpose: to accumulate information about items in a collection. • Outline: • Example: • Other examples: sum, min, accumulate a list of items meeting a particular criterion. Sentinel pattern • Purpose: to remove a condition in a loop guard. • Outline: • Example: Sentinel pattern, continued • Here is the code that Sentinal replaces; note that i != list.size() is evaluated every time through the loop, even though it is false only once. Design Pattern
    [Show full text]
  • Singleton ● Iterator
    CSC207 Week 6 Larry Zhang 1 Logistics ● Midterm: next Friday (October 27), 5:10 PM - 7:00 PM ● 110 minutes ● No aid ● Room: TBA (Note it’s not the lecture room) ● Past tests posted on the course website: http://axiom.utm.utoronto.ca/~207/17f/tests.shtml ● Arnold will send emails with more info. 2 Design Patterns 3 /r/LifeProTips 4 Design Patterns Design patterns are like “LifeProTips” for software design. ● Effective use of the OO Paradigm. ● Using the patterns results in flexible, malleable, maintainable code. ● It usually allows plug and play additions to existing code. ● It gives developers a vocabulary to talk about recurring class organizations. 5 Design Patterns for Today ● Observer ● Singleton ● Iterator 6 The Observer Pattern 7 Goals ● When certain objects need to be informed about the changes occurred in other objects. ● One object changes state, all its dependents are notified and updated automatically. ● Programmer only need to worry about how the observer changes if the observables changes, and connecting the observers and observables. ● Real-life example: setting up Pre-Authorized Bill Payment 8 General Implementation 9 Java Implementation 10 DEMO #1 Implement Our Own Observer/Observable observer/Observable.java observer/Observer.java 11 DEMO #2 Use Our Observer/Observable observer/LightBulb.java observer/LightBulbObserver.java observer/LightBulbObservable.java observer/LightBulbMain.java 12 Advanced Issues in Observer Pattern Push and Pull communication methods ● Push model: the Observable send all information about the change
    [Show full text]
  • Java Design Patterns I
    Java Design Patterns i Java Design Patterns Java Design Patterns ii Contents 1 Introduction to Design Patterns 1 1.1 Introduction......................................................1 1.2 What are Design Patterns...............................................1 1.3 Why use them.....................................................2 1.4 How to select and use one...............................................2 1.5 Categorization of patterns...............................................3 1.5.1 Creational patterns..............................................3 1.5.2 Structural patterns..............................................3 1.5.3 Behavior patterns...............................................3 2 Adapter Design Pattern 5 2.1 Adapter Pattern....................................................5 2.2 An Adapter to rescue.................................................6 2.3 Solution to the problem................................................7 2.4 Class Adapter..................................................... 11 2.5 When to use Adapter Pattern............................................. 12 2.6 Download the Source Code.............................................. 12 3 Facade Design Pattern 13 3.1 Introduction...................................................... 13 3.2 What is the Facade Pattern.............................................. 13 3.3 Solution to the problem................................................ 14 3.4 Use of the Facade Pattern............................................... 16 3.5 Download the Source Code.............................................
    [Show full text]
  • Iterator Design Pattern Copyright C 2016 by Linda Marshall and Vreda Pieterse
    Department of Computer Science Tackling Design Patterns Chapter 15: Iterator Design Pattern Copyright c 2016 by Linda Marshall and Vreda Pieterse. All rights reserved. Contents 15.1 Introduction ................................. 2 15.2 Iterator Design Pattern .......................... 2 15.2.1 Identification . 2 15.2.2 Problem . 2 15.2.3 Structure . 3 15.2.4 Participants . 3 15.3 Cohesion ................................... 4 15.4 Iterator Pattern Explained ........................ 4 15.4.1 Design . 4 15.4.2 Improvements achieved . 5 15.4.3 Disadvantage . 5 15.4.4 Real world example . 6 15.4.5 Related Patterns . 6 15.5 Implementation Issues ........................... 7 15.5.1 Accessing the elements of the aggregate . 7 15.5.2 Additional functionality . 7 15.5.3 Internal and External iterators . 8 15.5.4 Allocation on the heap or on the stack . 8 15.5.5 Using C++ STL Iterators . 8 15.6 Example .................................... 11 15.7 Exercises ................................... 12 References ....................................... 13 1 15.1 Introduction To iterate means to repeat. In software it may be implemented using recursion or loop structures such as for-loops and while-loops. A class that provides the functionality to support iteration is called an iterator. The term aggregate is used to refer to a collection of objects. In software a collection may be implemented in an array, a vector, a binary tree, or any other data structure of objects. The iterator pattern is prescriptive about how aggregates and their iterators should be implemented. Two general principles are applied in the iterator design pattern. The first is a prominent principle of good design namely separation of concerns.
    [Show full text]
  • Cofree Traversable Functors
    IT 19 035 Examensarbete 15 hp September 2019 Cofree Traversable Functors Love Waern Institutionen för informationsteknologi Department of Information Technology Abstract Cofree Traversable Functors Love Waern Teknisk- naturvetenskaplig fakultet UTH-enheten Traversable functors see widespread use in purely functional programming as an approach to the iterator pattern. Unlike other commonly used functor families, free Besöksadress: constructions of traversable functors have not yet been described. Free constructions Ångströmlaboratoriet Lägerhyddsvägen 1 have previously found powerful applications in purely functional programming, as they Hus 4, Plan 0 embody the concept of providing the minimal amount of structure needed to create members of a complex family out of members of a simpler, underlying family. This Postadress: thesis introduces Cofree Traversable Functors, together with a provably valid Box 536 751 21 Uppsala implementation, thereby developing a family of free constructions for traversable functors. As free constructions, cofree traversable functors may be used in order to Telefon: create novel traversable functors from regular functors. Cofree traversable functors 018 – 471 30 03 may also be leveraged in order to manipulate traversable functors generically. Telefax: 018 – 471 30 00 Hemsida: http://www.teknat.uu.se/student Handledare: Justin Pearson Ämnesgranskare: Tjark Weber Examinator: Johannes Borgström IT 19 035 Tryckt av: Reprocentralen ITC Contents 1 Introduction7 2 Background9 2.1 Parametric Polymorphism and Kinds..............9 2.2 Type Classes........................... 11 2.3 Functors and Natural Transformations............. 12 2.4 Applicative Functors....................... 15 2.5 Traversable Functors....................... 17 2.6 Traversable Morphisms...................... 22 2.7 Free Constructions........................ 25 3 Method 27 4 Category-Theoretical Definition 28 4.1 Applicative Functors and Applicative Morphisms......
    [Show full text]
  • Template Method, Factory Method, and Composite
    CHAPTER 7 Template Method, Factory Method, and Composite Objectives The objectives of this chapter are to identify the following: • Introduce the template, factory, and composite patterns. • Create basic UML diagrams for these design patterns. • Review the UML collaboration and deployment diagrams. Software Development Methods 1 Template Method, Factory Method, and Composite Template Method Use the Template Method pattern to: Pattern • Define a skeleton of an algorithm in a base class but defer certain steps to derived classes. This allows a subclass to provide a specific implementation for a single step within an algorithm without using the strategy or bridge pat- terns. Template Methods have two (2) participants: • An Abstract Class which defines the abstract operations that will be imple- mented by the concrete subclasses. This class also defines the skeleton of the algorithm. • A Concrete Class which implements the primitive abstract methods declared in the abstract class. The results we gain from implementing a Template Method pattern are: • An inverted control structure. The parent class, via inheritance and polymor- phism, calls the derived class’ methods and not vice versa. To illustrate this design pattern, the following trivial example: class ClassA { protected: virtual void doPrint(void) = 0; public: void print(void); }; The Java equivalent might appear as: public class ClassA { protected abstract void doPrint(); public void print() { ... } }; Now we implement the print() method in the abstract class: void ClassA::print() { // do some stuff doPrint(); // do more stuff } The corresponding Java code might appear as: 2 Software Development Methods Template Method, Factory Method, and Composite public void print() { // do some stuff doPrint(); // do more stuff } No we need to define the doPrint() method.
    [Show full text]
  • Design Pattern Case Studies with C++ Douglas C. Schmidt Http
    Case Studies Using Patterns The following slides describ e several case Design Pattern Case Studies with studies using C++ and patterns to build highly extensible software C++ The examples include 1. Expression trees Douglas C. Schmidt { e.g., Bridge, Factory, Adapter 2. System Sort http://www.cs.wustl.edu/schmidt/ { e.g., Facade, Adapter, Iterator, Singleton, [email protected] Factory Metho d, Strategy, Bridge, Double- Checked Lo cking Optimization Washington University, St. Louis 3. Sort Veri er { e.g., Strategy, Factory Metho d, Facade, It- erator, Singleton 2 1 Case Study 1: Expression Tree Expression Tree Diagram Evaluator BINARY The following inheritance and dynamic bind- NODES example constructs expression trees ing * { Expression trees consist of no des containing op erators and op erands _ Op erators have di erent precedence levels, + di erent asso ciativities, and di erent arities, e.g., Multiplication takes precedence over addi- UNARY tion NODE 55 33 44 The multiplication op erator has two argu- ments, whereas unary minus op erator has only one Op erands are integers, doubles, variables, INTEGER etc. NODES We'll just handle integers in this example::: 3 4 C Version Expression Tree Behavior A typical functional metho d for implement- ing expression trees in C involves using a struct/union to represent data structure, Expression trees e.g., { Trees may be \evaluated" via di erent traver- sals typ edef struct Tree No de Tree No de; struct Tree No de f e.g., in-order, p ost-order, pre-order, level- enum f order NUM,
    [Show full text]
  • Object-Oriented Design & Patterns
    Object-Oriented Design & Patterns 2nd edition Cay S. Horstmann Chapter 5: Patterns and GUI Programming CPSC 2100 Software Design and Development 1 Chapter Topics • The Iterators as Patterns. • The Pattern Concept. • The OBSERVER Pattern. • Layout Managers and the STRATEGY Pattern. • Components, Containers, and the COMPOSITE Pattern. • Scroll Bars and the DECORATOR Pattern. • How to Recognize Patterns. • Putting Patterns to Work. CPSC 2100 University of Tennessee at Chattanooga –Fall 2013 2 Chapter Objective • Introduce the concept of Patterns. • Explain Patterns with examples from the Swing user interface toolkit, to learn about Patterns and GUI programming at the same time. CPSC 2100 University of Tennessee at Chattanooga –Fall 2013 3 List Iterators LinkedList<String> list = . .; ListIterator<String> iterator = list.listIterator(); while (iterator.hasNext()) { String current = iterator.next(); . } Why iterators? CPSC 2100 University of Tennessee at Chattanooga –Fall 2013 4 Classical List Data Structure • Traverse links directly Link currentLink = list.head; while (currentLink != null) { Object current = currentLink.data; currentLink = currentLink.next; } • Problems: o Exposes implementation of the links to the users. o Error-prone. CPSC 2100 University of Tennessee at Chattanooga –Fall 2013 5 High-Level View of Data Structures • Queue void add(E x) Figure 1: The Queue Interface E peek() E remove() int size() • Array with random access E get(int i) void set(int i, E x) void add(E x) int size() Figure 2: The Array Interface CPSC 2100 University
    [Show full text]
  • Javascript Patterns
    JavaScript Patterns JavaScript Patterns Stoyan Stefanov Beijing • Cambridge • Farnham • Köln • Sebastopol • Tokyo JavaScript Patterns by Stoyan Stefanov Copyright © 2010 Yahoo!, Inc.. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://my.safaribooksonline.com). For more information, contact our corporate/institutional sales department: (800) 998-9938 or [email protected]. Editor: Mary Treseler Indexer: Potomac Indexing, LLC Production Editor: Teresa Elsey Cover Designer: Karen Montgomery Copyeditor: ContentWorks, Inc. Interior Designer: David Futato Proofreader: Teresa Elsey Illustrator: Robert Romano Printing History: September 2010: First Edition. Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of O’Reilly Media, Inc. JavaScript Patterns, the image of a European partridge, and related trade dress are trademarks of O’Reilly Media, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O’Reilly Media, Inc., was aware of a trademark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher and author assume no responsibility for errors or omissions, or for damages resulting from the use of the information con- tained herein. ISBN: 978-0-596-80675-0 [SB] 1284038177 To my girls: Eva, Zlatina, and Nathalie Table of Contents Preface . ................................................................... xiii 1. Introduction .
    [Show full text]
  • The Singleton Design Pattern See
    CSC 7322 : Object Oriented Development J Paul Gibson, A207 /~gibson/Teaching/CSC7322/ Design Patterns Revisited …/~gibson/Teaching/CSC7322/L11-DesignPatterns-2.pdf 2013: J Paul Gibson TSP: Software Engineering CSC7322/ DesignPatterns .1 Learning by PBL – the patterns selected 1. Singleton - creational 2. Iterator – behavioural 3. Visitor – behavioural 4. Proxy - structural 5. Factory - creational 6. Decorator – structural 7. Facade - structural 8. Adapter - structural 9. Chain Of Responsibility - behavioural 10. MVC – a composite pattern (Strategy, Observer, composite) NOTE : you should have a reasonable understanding of all 23 patterns, and a good understanding of implementation concerns in at least 2 different OO languages. 2013: J Paul Gibson TSP: Software Engineering CSC7322/ DesignPatterns .2 The Singleton Design Pattern See - http://sourcemaking.com/design_patterns/singleton •Intent •Ensure a class has only one instance, and provide a global point of access to it. •Encapsulated “just -in -time initialization” or “initialization on first use”. •Problem •Application needs one, and only one, instance of an object. •Additionally, lazy initialization and global access are necessary. 2013: J Paul Gibson TSP: Software Engineering CSC7322/ DesignPatterns .3 The Singleton Design Pattern See - http://sourcemaking.com/design_patterns/singleton Relation to other patterns •Abstract Factory, Builder, and Prototype can use Singleton in their implementation. •Facade objects are often Singletons because only one Facade object is required. •The advantage of Singleton over global variables is that you are absolutely sure of the number of instances when you use Singleton. •The Singleton design pattern is one of the most inappropriately used patterns. Designers frequently use Singletons in a misguided attempt to replace global variables. A Singleton is, for intents and purposes, a global variable.
    [Show full text]