This document discusses design patterns and provides examples of implementing some common patterns in C#. It begins with an introduction to design patterns, their history and types. It then demonstrates implementing singleton, prototype, facade and decorator patterns in C#, including class diagrams and implementation steps. It discusses advantages of design patterns and hints for advanced development, like making patterns thread-safe. The document concludes with a thank you.
JAVA design patterns and Basic OOp conceptsRahul Malhotra
油
This Presentation is about java design patterns. I have covered some OOPs concepts as well: Polymorphism, Interface, Inheritance, abstraction etc. And the Main Topic Covers: Factory Design Patterns,Observer Design Patterns,Proxy Design Patterns,Adapter Design Patterns,MVC Design Patterns etc
This document discusses structural design patterns from the Gang of Four (GoF) patterns book. It introduces proxies, decorators, adapters, fa巽ades, and composites patterns. Proxies provide a placeholder for another object to control access. Decorators dynamically add/remove responsibilities to objects. Adapters allow incompatible interfaces to work together. Fa巽ades provide a simplified interface to a subsystem. Composites represent part-whole hierarchies to access all parts uniformly. Bridge and flyweight patterns were not covered due to dependencies on other patterns. The document emphasizes introducing extra levels of indirection to solve problems and favoring composition over inheritance.
Lecture 11 from the IAG0040 Java course in TT.
See the accompanying source code written during the lectures: https://github.com/angryziber/java-course
Describes goods and bads of software architecture as well as common design patterns.
This document provides an overview of design patterns, including their definition, origins, properties, types, and examples. It discusses common design patterns like Singleton, Observer, Strategy, Adapter, Facade, and Proxy. For each pattern, it describes the context, problem, forces, solution, and examples. The document also covers challenges of applying patterns and developing new patterns.
The document provides an introduction and overview of design patterns. It defines design patterns as common solutions to recurring problems in software design. The document discusses the origin of design patterns in architecture, describes the four essential parts of a design pattern (name, problem, solution, consequences), and categorizes patterns into creational, structural, and behavioral types. Examples of commonly used patterns like Singleton and State patterns are also presented.
The document discusses several creational design patterns including Singleton, Abstract Factory, Builder, and Prototype patterns. It provides definitions and examples of how each pattern works, including ensuring a class only has one instance (Singleton), creating object factories without specifying classes (Abstract Factory), constructing complex objects step-by-step (Builder), and copying existing objects (Prototype). The document is intended for teaching software design patterns to students.
The document provides an overview of the GoF design patterns including the types (creational, structural, behavioral), examples of common patterns like factory, abstract factory, singleton, adapter, facade, iterator, observer, and strategy, and UML diagrams illustrating how the patterns can be implemented. Key aspects of each pattern like intent, relationships, pros and cons are discussed at a high level. The document is intended to introduce software engineers to design patterns and how they can be applied.
Jump start to OOP, OOAD, and Design PatternNishith Shukla
油
The document discusses object-oriented programming (OOP) and design patterns. It explains why software development benefits from modeling objects after real-world objects. Some key principles of OOP include encapsulation, inheritance, abstraction, and polymorphism. Common design patterns are also outlined, such as creational patterns like factory and prototype patterns, and structural patterns like adapter and bridge patterns.
The document discusses various design principles and patterns in Java including the Singleton, Factory Method, Prototype, and Abstract Factory patterns. It provides examples of when and how to apply each pattern, describing their structures, participants, collaborations and consequences. It also covers design principles such as the open-closed principle, dependency inversion, and interface segregation.
Design patterns are optimized, reusable solutions to the programming problems that we encounter every day. A design pattern is not a class or a library that we can simply plug into our system; it's much more than that. It is a template that has to be implemented in the correct situation. It's not language-specific either. A good design pattern should be implementable in mostif not alllanguages, depending on the capabilities of the language. Most importantly, any design pattern can be a double-edged sword if implemented in the wrong place, it can be disastrous and create many problems for you. However, implemented in the right place, at the right time, it can be your savior.
The document discusses design patterns. It begins with an introduction to design patterns, covering their history and definition. It then covers several fundamental design principles for patterns, including avoiding tight coupling, favoring composition over inheritance, and the single responsibility principle. Finally, it discusses several specific design patterns, including factory method, singleton, strategy, state, and proxy patterns. It provides examples of when and how to apply these patterns.
This document provides an overview and introduction to design patterns. It discusses creational, structural, and behavioral patterns. For each category it briefly introduces and describes the intent and use of some common patterns, including Factory Method, Singleton, Decorator, Facade, Command, Iterator, and Observer. It also includes diagrams to illustrate the relationships between objects in sample implementations.
Design patterns difference between interview questionsUmar Ali
油
The document summarizes differences between various design patterns and programming concepts. It compares Factory Pattern vs Abstract Factory Pattern, Builder Pattern vs Abstract Factory Pattern vs Composite Pattern, MVC vs MVP, Proxy Pattern vs Observer Pattern, Strategy Pattern vs Inversion of Control, IDictionary vs Dictionary, Factory Pattern vs Dependency Injection, String.Clone() vs String.Copy(), Strategy Pattern vs Factory Pattern, Proxy vs Adapter, Decorator vs Visitor patterns.
This presentation discusses design patterns, which are general reusable solutions to commonly occurring problems in software design. It describes several design patterns including creational patterns like factory and singleton that deal with object creation, structural patterns like adapter and proxy that deal with relationships between entities, and behavioral patterns like strategy and observer that deal with communication between objects. Specific patterns like singleton, factory, observer, strategy, and adapter are explained in more detail through their definitions and purposes.
The document discusses design patterns, including their definition, benefits, common myths, design principles, basic elements, categories, and the pattern life cycle. It provides examples of the Singleton and Observer patterns, and discusses how the Model-View-Controller pattern uses strategies like Observer, Strategy, and Composite. Experts recommend focusing on simplicity, practical extensibility over hypothetical generality, and adapting patterns to problems rather than following them rigidly.
This document provides 3 methods for starting to program in Java:
1. Using the shell to run Java code by compiling .java files with javac and running .class files with java.
2. Using the Eclipse IDE which provides an abstraction for programming without needing to install the JDK.
3. Creating a first program in Java by installing an editor, creating a class file, compiling with javac, and running with java.
The document discusses various design patterns categorized as creational, structural, and behavioral patterns. It provides examples of each pattern in Java code including factories, builders, singletons, decorators, observers, strategies, and more. Each pattern is defined as focusing on object creation, composition, or interaction and collaboration between objects. Specific Java classes, methods, and APIs demonstrating different patterns are listed.
This document provides an overview of several design patterns including Creational patterns (Factory, Abstract Factory, Singleton, Prototype, Builder), Structural patterns (Adapter, Facade, Proxy, Composite), and Behavioral patterns (Iterator, Observer, Strategy, State). It then discusses specific patterns in more detail, including Decorator, Flyweight, Proxy, Facade, Chain of Responsibility, Command, Interpreter, and Iterator patterns. For each pattern it provides a definition, example, and discussion of applicability.
The document discusses different creational design patterns, including the Abstract Factory pattern and Factory Method pattern. The Abstract Factory pattern provides an interface for creating families of related objects without specifying their concrete classes. It allows a system to be independent of how its objects are created. The Factory Method pattern defines an interface for creating an object but lets subclasses decide which class to instantiate. It decouples class creation from use through delegation to subclasses.
This document discusses dynamic modeling in object-oriented analysis. It covers:
- Dynamic models describe components with interesting dynamic behavior using state diagrams, sequence diagrams, and activity diagrams.
- Sequence diagrams show object interactions, and can identify potential classes and their operations.
- State diagrams model the dynamic behavior of individual classes through states and transitions triggered by events or activities.
- Activity diagrams can model complex business logic and workflows.
The document provides examples and best practices for constructing dynamic models during requirements analysis.
This document discusses various object-oriented design patterns including creational, structural, and behavioral patterns. It provides examples of common design patterns like singleton, factory, abstract factory, builder, prototype, adapter, decorator, proxy, facade, iterator, strategy, chain of responsibility, observer, and template patterns. It also discusses pillars of object-oriented programming like abstraction, encapsulation, modularity, and hierarchy.
Object Oriented Concepts required to know about the Android Application Programming are discussed over here. Get the most of the details about each and every concept of OO paradigm so you can use them very well in Android Application Programming.
The document discusses object-oriented programming (OOP) principles and design patterns. It explains that OOP models real-world objects and their relationships, and outlines key OOP concepts like encapsulation, inheritance, abstraction, and polymorphism. It then discusses common design patterns like creational patterns (factory method, abstract factory, builder, prototype, singleton), structural patterns (adapter, bridge, composite, decorator, facade, flyweight, proxy), and behavioral patterns (chain of responsibility, command, interpreter, observer, state, visitor).
Design patterns are reusable solutions to common programming problems. The Gang of Four (GoF) authored the seminal book on design patterns, identifying 23 patterns divided into creational, structural and behavioral categories. Creational patterns provide object creation mechanisms, structural patterns manage object relationships, and behavioral patterns define communication between objects. Design patterns can be further divided into class and object patterns based on whether relationships are defined at compile-time or run-time.
Patterns (contd)Software Development ProcessDesign patte.docxdanhaley45372
油
Patterns (contd)
Software Development Process
Design patterns used to handle change
More time extending and changing code than developing it.
The Strategy design pattern handle change by selecting from a family of external algorithms rather than rewrite.
Design point: Make code closed for modification of code, but open for extension
Problem
Computer object created
Description Method returns
Getting a Computer
Problem
Program has to change every time
Customer changes options
Decorator Pattern
Wrapper code used to extend your core code
Extend a class dynamically at runtime
Decorator uses wrapper code to extend core functionality - decorating the code
Decorator Pattern
description() returns You are getting a computer
Wrapper description() returns
You are getting a computer and a disk
Wrapper description() returns
You are getting a computer and a disk and a monitor
Decorator Pattern
Core component: Computer
Variables holding computer objects should also be able to hold objects that wrap computer objects.
Extend the wrapper classes from the Computer class.
Abstract class cannot be instantiated
Ensures all wrappers are consistent
Developers have to provide their own description
Decorator Pattern
Method calls the core computer objects
description method and adds and a disk
Decorator Pattern
Method calls the core computer objects
description method and adds and a disk
Extend the core object by wrapping it in decorator wrappers. Avoids modification of the core code.
Each successive wrapper called the description method of the object it wrapped and added something to it.
Factory Pattern
Based on type, call the
Connection method
Factory Pattern
Create a method that returns the
correct connection type
Factory Pattern
New operator used to create OracleConnection objects.
New operator used to create SqlServerConnection objects, and MySqlConnection objects.
New operator to instantiate many different concrete classes
Code becomes larger and needs to be replicated in many places
Factor that code out into a method.
Code keeps changing
Encapsulate code into a factory object
Goal: Separate out the changeable code and leave the core code closed for modification
Building the Factory
Creating the Factory
FirstFactory class encapsulates the connection object creation
Pass to it the type of connection (Oracle, SQL Server,)
Use the factory object to create connection objects with a factory method named createConnection
Building the Factory
Create the FirstFactory class.
Save the type of the database, passed to the FirstFactory classs constructor.
Object-creation code changes
Check which type of object to be created
(OracleConnection, SqlServerConnection,
and then create it.
Factory Class
Create the Abstract Connection Class
Core code should not be modified or has to be modified
as little as possible.
Using the connection object returned by the
new factory object
Use t.
C#.net, C Sharp.Net Online Training Course ContentSVRTechnologies
油
SVR Technologies providing the course content of C Sharp.net. It was given by our expert Poornima to improve the knowledge of the readers. For more details about other IT courses please visit http://www.svrtechnologies.com
SVR Technologies
Contact: 91- 988 502 2027
info@svrtechnologies.com
http://svrtechnologies.com
The document discusses various design principles and patterns in Java including the Singleton, Factory Method, Prototype, and Abstract Factory patterns. It provides examples of when and how to apply each pattern, describing their structures, participants, collaborations and consequences. It also covers design principles such as the open-closed principle, dependency inversion, and interface segregation.
Design patterns are optimized, reusable solutions to the programming problems that we encounter every day. A design pattern is not a class or a library that we can simply plug into our system; it's much more than that. It is a template that has to be implemented in the correct situation. It's not language-specific either. A good design pattern should be implementable in mostif not alllanguages, depending on the capabilities of the language. Most importantly, any design pattern can be a double-edged sword if implemented in the wrong place, it can be disastrous and create many problems for you. However, implemented in the right place, at the right time, it can be your savior.
The document discusses design patterns. It begins with an introduction to design patterns, covering their history and definition. It then covers several fundamental design principles for patterns, including avoiding tight coupling, favoring composition over inheritance, and the single responsibility principle. Finally, it discusses several specific design patterns, including factory method, singleton, strategy, state, and proxy patterns. It provides examples of when and how to apply these patterns.
This document provides an overview and introduction to design patterns. It discusses creational, structural, and behavioral patterns. For each category it briefly introduces and describes the intent and use of some common patterns, including Factory Method, Singleton, Decorator, Facade, Command, Iterator, and Observer. It also includes diagrams to illustrate the relationships between objects in sample implementations.
Design patterns difference between interview questionsUmar Ali
油
The document summarizes differences between various design patterns and programming concepts. It compares Factory Pattern vs Abstract Factory Pattern, Builder Pattern vs Abstract Factory Pattern vs Composite Pattern, MVC vs MVP, Proxy Pattern vs Observer Pattern, Strategy Pattern vs Inversion of Control, IDictionary vs Dictionary, Factory Pattern vs Dependency Injection, String.Clone() vs String.Copy(), Strategy Pattern vs Factory Pattern, Proxy vs Adapter, Decorator vs Visitor patterns.
This presentation discusses design patterns, which are general reusable solutions to commonly occurring problems in software design. It describes several design patterns including creational patterns like factory and singleton that deal with object creation, structural patterns like adapter and proxy that deal with relationships between entities, and behavioral patterns like strategy and observer that deal with communication between objects. Specific patterns like singleton, factory, observer, strategy, and adapter are explained in more detail through their definitions and purposes.
The document discusses design patterns, including their definition, benefits, common myths, design principles, basic elements, categories, and the pattern life cycle. It provides examples of the Singleton and Observer patterns, and discusses how the Model-View-Controller pattern uses strategies like Observer, Strategy, and Composite. Experts recommend focusing on simplicity, practical extensibility over hypothetical generality, and adapting patterns to problems rather than following them rigidly.
This document provides 3 methods for starting to program in Java:
1. Using the shell to run Java code by compiling .java files with javac and running .class files with java.
2. Using the Eclipse IDE which provides an abstraction for programming without needing to install the JDK.
3. Creating a first program in Java by installing an editor, creating a class file, compiling with javac, and running with java.
The document discusses various design patterns categorized as creational, structural, and behavioral patterns. It provides examples of each pattern in Java code including factories, builders, singletons, decorators, observers, strategies, and more. Each pattern is defined as focusing on object creation, composition, or interaction and collaboration between objects. Specific Java classes, methods, and APIs demonstrating different patterns are listed.
This document provides an overview of several design patterns including Creational patterns (Factory, Abstract Factory, Singleton, Prototype, Builder), Structural patterns (Adapter, Facade, Proxy, Composite), and Behavioral patterns (Iterator, Observer, Strategy, State). It then discusses specific patterns in more detail, including Decorator, Flyweight, Proxy, Facade, Chain of Responsibility, Command, Interpreter, and Iterator patterns. For each pattern it provides a definition, example, and discussion of applicability.
The document discusses different creational design patterns, including the Abstract Factory pattern and Factory Method pattern. The Abstract Factory pattern provides an interface for creating families of related objects without specifying their concrete classes. It allows a system to be independent of how its objects are created. The Factory Method pattern defines an interface for creating an object but lets subclasses decide which class to instantiate. It decouples class creation from use through delegation to subclasses.
This document discusses dynamic modeling in object-oriented analysis. It covers:
- Dynamic models describe components with interesting dynamic behavior using state diagrams, sequence diagrams, and activity diagrams.
- Sequence diagrams show object interactions, and can identify potential classes and their operations.
- State diagrams model the dynamic behavior of individual classes through states and transitions triggered by events or activities.
- Activity diagrams can model complex business logic and workflows.
The document provides examples and best practices for constructing dynamic models during requirements analysis.
This document discusses various object-oriented design patterns including creational, structural, and behavioral patterns. It provides examples of common design patterns like singleton, factory, abstract factory, builder, prototype, adapter, decorator, proxy, facade, iterator, strategy, chain of responsibility, observer, and template patterns. It also discusses pillars of object-oriented programming like abstraction, encapsulation, modularity, and hierarchy.
Object Oriented Concepts required to know about the Android Application Programming are discussed over here. Get the most of the details about each and every concept of OO paradigm so you can use them very well in Android Application Programming.
The document discusses object-oriented programming (OOP) principles and design patterns. It explains that OOP models real-world objects and their relationships, and outlines key OOP concepts like encapsulation, inheritance, abstraction, and polymorphism. It then discusses common design patterns like creational patterns (factory method, abstract factory, builder, prototype, singleton), structural patterns (adapter, bridge, composite, decorator, facade, flyweight, proxy), and behavioral patterns (chain of responsibility, command, interpreter, observer, state, visitor).
Design patterns are reusable solutions to common programming problems. The Gang of Four (GoF) authored the seminal book on design patterns, identifying 23 patterns divided into creational, structural and behavioral categories. Creational patterns provide object creation mechanisms, structural patterns manage object relationships, and behavioral patterns define communication between objects. Design patterns can be further divided into class and object patterns based on whether relationships are defined at compile-time or run-time.
Patterns (contd)Software Development ProcessDesign patte.docxdanhaley45372
油
Patterns (contd)
Software Development Process
Design patterns used to handle change
More time extending and changing code than developing it.
The Strategy design pattern handle change by selecting from a family of external algorithms rather than rewrite.
Design point: Make code closed for modification of code, but open for extension
Problem
Computer object created
Description Method returns
Getting a Computer
Problem
Program has to change every time
Customer changes options
Decorator Pattern
Wrapper code used to extend your core code
Extend a class dynamically at runtime
Decorator uses wrapper code to extend core functionality - decorating the code
Decorator Pattern
description() returns You are getting a computer
Wrapper description() returns
You are getting a computer and a disk
Wrapper description() returns
You are getting a computer and a disk and a monitor
Decorator Pattern
Core component: Computer
Variables holding computer objects should also be able to hold objects that wrap computer objects.
Extend the wrapper classes from the Computer class.
Abstract class cannot be instantiated
Ensures all wrappers are consistent
Developers have to provide their own description
Decorator Pattern
Method calls the core computer objects
description method and adds and a disk
Decorator Pattern
Method calls the core computer objects
description method and adds and a disk
Extend the core object by wrapping it in decorator wrappers. Avoids modification of the core code.
Each successive wrapper called the description method of the object it wrapped and added something to it.
Factory Pattern
Based on type, call the
Connection method
Factory Pattern
Create a method that returns the
correct connection type
Factory Pattern
New operator used to create OracleConnection objects.
New operator used to create SqlServerConnection objects, and MySqlConnection objects.
New operator to instantiate many different concrete classes
Code becomes larger and needs to be replicated in many places
Factor that code out into a method.
Code keeps changing
Encapsulate code into a factory object
Goal: Separate out the changeable code and leave the core code closed for modification
Building the Factory
Creating the Factory
FirstFactory class encapsulates the connection object creation
Pass to it the type of connection (Oracle, SQL Server,)
Use the factory object to create connection objects with a factory method named createConnection
Building the Factory
Create the FirstFactory class.
Save the type of the database, passed to the FirstFactory classs constructor.
Object-creation code changes
Check which type of object to be created
(OracleConnection, SqlServerConnection,
and then create it.
Factory Class
Create the Abstract Connection Class
Core code should not be modified or has to be modified
as little as possible.
Using the connection object returned by the
new factory object
Use t.
C#.net, C Sharp.Net Online Training Course ContentSVRTechnologies
油
SVR Technologies providing the course content of C Sharp.net. It was given by our expert Poornima to improve the knowledge of the readers. For more details about other IT courses please visit http://www.svrtechnologies.com
SVR Technologies
Contact: 91- 988 502 2027
info@svrtechnologies.com
http://svrtechnologies.com
The document discusses three design patterns: Singleton, Observer, and Factory. The Singleton pattern ensures that only one instance of a class can exist and provides a global access point. The Observer pattern defines a subscription mechanism so that multiple objects can be notified of changes to an object they are observing. The Factory pattern provides an interface for creating objects but leaves the concrete class unspecified. Real-world examples and implementations of each pattern are provided.
The document discusses design patterns used in object-oriented programming. It describes common design patterns like factory method, singleton, observer, and adapter patterns. It also discusses principles for assigning responsibilities to objects like high cohesion and low coupling. The document provides examples of applying these patterns and principles to design software objects and systems.
This document introduces several design patterns including abstract factory, singleton, prototype, adapter, composite, and decorator patterns. It provides examples of how each pattern works and why it would be used, with accompanying PHP code samples. Design patterns are general reusable solutions to common programming problems and help show the relationship and interaction between objects.
Lecture two,
An introduction to Design Pattern
History
Pattern Language,
Categorization according to GoF
MVC
Creational Design Patterm
Factory Method
Abstract Factory
Singleton
Builder
what is design pattern?
what is design pattern in java?
what are the classification of design pattern?
why design pattern is important?
how we can implement any design pattern?
example of design pattern.
This document provides an introduction to design patterns, including their motivation, history, definition, categories, and examples. Some key points:
- Design patterns solve common programming problems by describing reusable solutions that can be adapted for different situations.
- Common categories include creational, structural, and behavioral patterns. Example patterns discussed are Singleton, Decorator, Abstract Factory.
- Design patterns speed up development, promote code reuse, and make software more robust, maintainable and extensible. Resources for further information on design patterns are provided.
Design patterns provide general reusable solutions to common problems in software design. They help structure code and define the way components interact. Some key design patterns discussed in the document include Singleton, Strategy, Decorator, and State. The Singleton pattern ensures a class only has one instance, Strategy encapsulates algorithms to allow flexible changes, Decorator adds functionality dynamically at runtime, and State changes object behavior based on its internal state. Design patterns improve code organization, reuse, and maintenance.
The document discusses various design patterns including the Template Method, Strategy, Observer, Composite, Iterator, Command, Adapter, Proxy, Decorator, Singleton, Factory, Builder, Interpreter, Domain Specific Language (DSL), Meta-programming, and Convention over Configuration patterns. It provides examples and descriptions of when each pattern would be used.
Luis Valencia will give a presentation on applying Typescript design patterns to React/SPFx. He has 17 years of experience including 10 years in SharePoint. The session will focus on writing clean, maintainable code and not flashy user interfaces. It will cover common design patterns like singleton, abstract factory, builder, and factory method. It will also discuss SOLID principles and building shared code libraries. The presentation aims to teach developers how to write code that is easy for others to maintain.
Why Design Patterns Are Important In Software EngineeringProtelo, Inc.
油
In software engineering, a design pattern is a general repeatable solution to a commonly occurring problem in software design. A design pattern is not a finished design that can be transformed directly into code. It is a description or template for how to solve a problem that can be used in many different situations. Learn how design patterns quickly solve common classes of problems and streamline communication between developers.
This document discusses various design patterns for software engineering. It describes creational patterns like factory method, abstract factory, builder, singleton, and prototype that deal with object creation. It also covers structural patterns like adapter, bridge, composite, decorator, facade, flyweight, and proxy that focus on class and object composition. Additionally, it mentions behavioral patterns like chain of responsibility, command, iterator, mediator, template method, visitor, memento, observer, state, and strategy that are related to communication between objects. The document provides examples of when and how to use different design patterns to solve common programming problems.
This document discusses software design patterns, which provide reusable solutions to common problems in software design. It covers creational patterns like singleton and abstract factory, structural patterns like adapter and bridge, and behavioral patterns like iterator and observer. Patterns help developers solve recurring problems in an elegant and reusable way by providing tried-and-tested solutions to common design problems. The document also discusses categories of patterns, their elements, and when to use different patterns.
Sofwear deasign and need of design patternchetankane
油
This document discusses software design and the need for design patterns. It covers the three phases of software design: analysis, design, and implementation. It then discusses what design patterns are, providing the definition that they are standard solutions to common programming problems. The document outlines the three main categories of design patterns: structural, creational, and behavioral. It provides examples like the factory pattern, explaining how it works to reduce dependencies and improve flexibility. In summary, the document introduces software design processes and argues that using design patterns provides benefits like improved code reuse and developer communication.
Sofwear deasign and need of design patternchetankane
油
Introduction to Design Patterns
1. The way how Experts do things
Prepared & Presented by :-
Prageeth Sandakalum, Microsoft Student Champ,
Faculty of IT, University of Moratuwa.
2. What are Design Patterns
Development Issues and introduction of Design Patterns
A brief history on design patters
What are design patterns?
Types of Design Patterns
Has your code been improved ?
Implementing Design Patterns in C#
Singleton Pattern
Prototype Pattern
Fa巽ade Pattern
Decorator pattern
4. Designing object-oriented software is hard and designing
reusable object-oriented software is even harder.
Erich Gamma -
Dependency Handling - Open and Close method
Open for Extension and Closed for Modification
Immobility of the existing libraries.
Knowledge of the patterns that have worked in the past, makes
the developers lives much easier in designing newer systems.
5. 1987 - Cunningham and Beck used Alexanders ideas to develop
a small pattern language for Smalltalk
1990 - The Gang of Four (Gamma, Helm, Johnson and Vlissides)
begin work compiling a catalog of design patterns
1991 - Bruce Anderson gives first Patterns Workshop at OOPSLA
1993 - Kent Beck and Grady Booch sponsor the first meeting of
what is now known as the Hillside Group
1994 - First Pattern Languages of Programs (PLoP) conference
1995 - The Gang of Four (GoF) publish the Design Patterns book
6. A design pattern is a general and reusable solution to a commonly
occurring problem in software.
- Microsoft Developer Network (MSDN) -
It is not a code that can be directly use in your application thus
We can call a pattern a template to design classes or objects in a
way that is proven to be optimized in the past
Design patterns help to develop the high-level Solutions and to
implement the Object Oriented principals
Open Close Principal :- Open for extension and closed for modifications
Dependency Inversion Principle :- Depend upon Abstractions, Not
On concretions.
7. OO Design Patterns
Creational Structural Behavioral
Behavioral Patterns
Abstract Factory Creates an instance of several families of classes
Builder Separates object construction from its representation
Factory Method Creates an instance of several derived classes
Prototype A fully initialized instance to be copied or cloned
Singleton A class of which only a single instance can exist
8. Structural Patterns
Adapter Match interfaces of different classes
Bridge Separates an objects interface from its implementation
Composite A tree structure of simple and composite objects
Decorator Add responsibilities to objects dynamically
Facade A single class that represents an entire subsystem
Flyweight A fine-grained instance used for efficient sharing
Proxy An object representing another object
9. Behavioral Patterns
Chain of Responsibility passing a request between a set of objects
Command Encapsulate a command request as an object
Interpreter A way to include language elements in a program
Iterator Sequentially access the elements of a collection
Mediator Defines simplified communication between classes
Memento Capture and restore an object's internal state
Observer A way of notifying change to a number of classes
State Alter an object's behavior when its state changes
Strategy Encapsulates an algorithm inside a class
Template Method Defer the steps of an algorithm to a subclass
Visitor Defines a new operation to a class without change
10. These are some of the Common advantages in Design patterns.
Capture expertise and make it more accessible to non-experts in
a standard form
Facilitate communication among the developers by providing a
common language
Make it easier to reuse successful designs and avoid alternatives
that diminish reusability
Facilitate design modifications
Improve design documentation
Improve design understandability
12. Concept
Ensures that a particular class has only one object
provide a central access point to invoke that object
Motivation and Problem addresses
Make sure that the client is not allowed to create
additional objects
The User Object
UML Class Try out Microsoft Windows basic applications
Diagram The Calculator and the Run window
13. Implementation Steps
Create the class with public modifier
Make the constructor private So that no body outside, can create
objects
Define a static method GetInstance() to retrieve the Object
Inside the method, use conditional statements to check whether the
object exists
If not create an object and return it
Otherwise just return the object
Then instantiate the object (make it static)
14. Some hints for advanced development
Make the GetInstance() method thread safe
Use locks, Double check the instances
Create a readonly object to use as the locking variable
Initialize the object on 1st declaration
private static Singleton instance=new Singleton();
Avoid sub-classing by using sealed class
public sealed class Singleton
15. Concept
Avoid repeatedly assigning same value to the
similar objects.
Allow independent behavior after the cloning ???
Motivation and Problem addresses
When creating objects (i.e. employee), we need to
specify the same value repeatedly for objects
employeeObj1.CompanyName = IFS;
employeeObj1.CompanyPhone = 011-2845564;
EmployeeObj2.CompanyName = IFS;
employeeObj2.CompanyPhone = 011-2845564;
16. Implementation Steps
Created an object from the given class, i.e. firstEmp : Employee
Now create the second object , i.e. secondEmp : Employee
Set the values of the old object, i.e. firstEmp.Company = IFS;
you can interchange the second and third steps
Implement the GetClone() method in the referring class.
Return the cloned version of the referring object (Use appropriate
cloning methods)
Assign the returned value to the second object or vise versa., i.e.
secondEmp = firstEmp.GetClone();
17. Concept
Wrap complicated subsystems with simpler interfaces
Delegates client requests to appropriate subsystems
Motivation and Problem addresses
The Client code become complicated with so many
objects
How Fa巽ade The client need not to know the complex architecture
Works of the sub system
Banking Applications
18. Implementation Steps
Create the Fa巽ade class with public modifier
Define object references of all the types in the sub system
Initialize all the objects On Demand
Create simple methods and handle multiple subsystem methods
inside that method
Withdraw() in Fa巽ade class handles DailyWithdrowalLimitExceeded(),
GetBalance(), IssueReceipt() etc.. Methods
19. Some hints for advanced development
Encapsulate the subsystem, So that it can only be accessed through
Fa巽ade interface.
Use internal modifiers
Make the Fa巽ade Object SINGLETON ???
Most of the time only one fa巽ade object is needed
Use multiple Sub Systems within the same dll.
If the sub system is too complex use multiple facades.
22. See the Restaurant Problem explained here
You create a beverage super class and all the beverages inherit from it
But it will have too much sub classes implementing the same cost
method in the super class.
Tea, PlainTea, TeaWithoutSugar, IcedTea, VanilaTea, ChocoTea etc
But each of them have very little difference on Ingredients
Adding Milk, Adding Sugar, Adding Chocolate
To avoid unwanted sub-classing create methods in the super class for
the extra changes
AddMilk(), AddSugar(), AddChocolate()
Has the problem been Solved?
23. Still we got some problems
OCP Open for Extension, Closed for Modification Then how to
handle the price changes ?
More methods needed, more problems created.
What if the new ingredients were introduced ?
Concept of Decorator Pattern
Take the initial Object and decorate it in the Run time
Take the Tea Object and decorate it with Sugar Object, then the
Choco / Vanilla Objects
24. Implementation Steps
Create the abstract class for the Main Classes, i.e. class Main
Create the abstract class for the Decorator Classes extending the
above class, i.e. class Decorator : Main
Create the sub classes of the Main class
Create the Decorator sub classes and let the Constructor to receive
a Main type object
Do the operation with the received object
When ever creating an object in the client code, Use the Main
class as the reference
25. Thank You !!!
References
Notes from Aruna Wickrama, Teamwork @ Asharp Power Camp
Head First Design Patterns By Eric Freeman, Elisabeth Robson,
Kathy Sierra, Bert Bates.
Design Principles and Design Patterns Robert C. Martin
Software Architecture Interview Questions By Shivprasad Koirala,
Sham Sheikh
Articles from GoF (Gang of Four)