Understanding Design Patterns in Java

Slide Note
Embed
Share

Explore the world of design patterns with a focus on Java, covering key concepts such as creational, structural, and behavioral patterns. Learn about popular patterns like Singleton, Abstract Factory, Builder, and Prototype with practical examples and explanations.


Uploaded on Sep 21, 2024 | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. Download presentation by click this link. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

E N D

Presentation Transcript


  1. Design Patterns

  2. Thinking in Patterns with Java Bruce Eckel http://www.mindview.net/Books/TIPatterns/

  3. Design Patterns Classification Creational Design Patterns Structural Design Patterns Behavioral Design Patterns

  4. Creational Design Patterns Singleton Factory Method Factory Pattern Abstract Factory Builder Reusable Pool Prototype

  5. Singleton Class Singleton { private static Singleton instance = null; private Singleton() {}; //private constructor public static synchronized Singleton getInstance() { if (instance == null) { instance = new Singleton(); } return instance; } }

  6. Abstract Factory Pattern Specialised class just to create an instance of Product Client Factory Product <<abstract nebo interface>> <<abstract nebo interface>> ConcreteFactory ConcreteProduct public Product createProduct() createProduct() { return new ConcreteProduct(); }

  7. Abstract Factory Pattern Window ClientClass <<abstract nebo interface>> WidgetFactory <<abstract nebo interface>> MotifWindow MetalWindow + createWindow() + createScrollBar() ScrollBar <<abstract nebo interface>> MotifScrollbar MetalScrollBar MotifFactory + createWindow() + createScrollBar() MetalFactory + createWindow() + createScrollBar()

  8. Builder AbstractBuilder <<abstract or interface>> Director + builder + buildStep1() + buildStep2() + buildStep3() + getObject() + construct() construct() { builder.buidlStep1(); builder.buildStep2(); buidler.buildStep3(); getObject(); } ConcreteBuilder1 ConcreteBuilder2

  9. Prototype AbstractPrototype <<abstract or interface>> use clone to instantiate Client + clone() ConcretePrototype1 ConcretePrototype2 clone() { // return copy of self } clone() { // return copy of self }

  10. Prototype Shallow copy

  11. Prototype Shallow copy copy

  12. Prototype Deep copy

  13. Prototype Deep copy copy copy

  14. Reusable Pool + pool Client 0..* 1 1 ReusablePool <<singleton>> uses + acquireReusable(): Reusable + releaseReusable(): Reusable 1 * Reusable 0..*

  15. Structural Design Patterns Adapter Bridge (sometimes considered to be a behavioral DP) Decorator Composite Facade Proxy and more

  16. Adapter Vendor class Client class

  17. Adapter Vendor class Adapter Client class

  18. Adapter Vendor class Client class Adapter

  19. Adapter Target <<interface>> Client request() Adapter Adaptee request() specificRequest()

  20. The Dependency Inversion Principle High level modules should not depend upon low level modules; both should depend on abstractions. Abstractions should not depend upon details; details should depend upon abstractions.

  21. Dependency Inversion Principle Dependency inversion principle specific form of decoupling where conventional dependency relationships established from high-level are inverted (e.g. reversed) for the purpose of rendering high-level modules independent of the low-level module implementation details. The principle states: High-level modules should not depend on low-level modules. Both should depend on abstractions. Abstractions should not depend upon details. Details should depend upon abstractions. (From Wikipedia, the free encyclopedia)

  22. The Dependency Inversion Principle

  23. The Dependency Inversion Principle Depends on

  24. Bridge Jednoduch roz en p ede l ho diagramu design pattern Bridge

  25. Bridge Depends on Does not depend on Depends on

  26. Bridge Implementation M me v ce hledisek klasifikace. Pokud bychom je cht li zohlednit v jedn inheritan n hierarchii, do lo by k explozi po tu t d (pro r zn kombinace). e en odd lit klasifika n hlediska. Abstraction refinement

  27. Bridge Bridge imp + drawLine(): void

  28. Bridge imp.devDrawLine(); imp.devDrawLine(); imp.devDrawLine(); imp.devDrawLine(); Bridge imp + drawRect(): void DrawRect(); DrawText(); XDrawLine(); XDrawString();

  29. Bridge AbstractProvider <<interface>> AbstractUser <<abstract or interface>> provider + oper1() + oper2() + operation() User1 User2 Provider2 Provider1 + operation() + operation() + oper1() + oper2() + oper1() + oper2() operation() { provider.oper1(); } operation() { provider.oper2(); }

  30. Bridge 1. The Bridge pattern is intended to keep the interface to your client class constant while allowing you to change the actual kind of class you use. 2. You can extend the implementation class and the bridge class separately, and usually without much interaction with each other (avoiding permanent binding between abstraction and its implementation). 3. You can hide implementation details from the client class much more easily.

  31. Decorator InputStream ObjectInputStream ObjectBufferedInputStream BufferedInputStream Possible class explosion (hard to maintain) Decorator patterns helps ...

  32. The Open-Close Design Principle Software entities like classes, modules and functions should be open for extension but closed for modifications. Adding new functionality should involve minimal changes to existing code. => adding new functionality will not break the old functionality => old functionality need not be re-tested Most changes will be handled as new methods and new classes. Designs following this principle would result in resilient code which does not break on addition of new functionality.

  33. Decorator (structural) InputStream

  34. Decorator (structural) InputStream Buffered

  35. Decorator (structural) Object S cukrem Buffered InputStream K va

  36. Decorator (structural) Component << abstract >> 1 ClientClass methodA() methodB() // other methods Decorator << abstract >> ConcreteComponent 0..1 methodA() methodB() // other methods methodA() methodB() // other methods ConcreteDecoratorA ConcreteDecoratorB methodA() methodB() // other methods methodA() methodB() // other methods

  37. Decorator (structural) Component << abstract >> 1 ClientClass methodA() methodB() // other methods Decorator << abstract >> ConcreteComponent 0..1 methodA() methodB() // other methods methodA() methodB() // other methods Object ConcreteDecoratorA ConcreteDecoratorB InputStream methodA() methodB() // other methods methodA() methodB() // other methods Buffered

  38. Decorator (structural) InputStream is = new FileInputStream ("fff"); BufferedInputStream bis = new BufferedInputStream(is); ObjectInputStream ois = new ObjectInputStream(bis); BufferedInputStream bis = new BufferedInputStream(new FileInputStream("fff"));

  39. Decorator (structural) The Decorator Pattern attaches additional functionalities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality. Decorator prevents explosion of (sub)classes.

  40. Composite (structural) Abstract or interface graphic Returns Graphic

  41. Composite (structural) graphic Forall g in graphic g.draw(); Add g to the graphic list

  42. Composite (structural)

  43. Composite (structural) uniformly regardless whether leaf or composite Views all components Default empty implementation Forwards the operation to all children

  44. Faade (structural) Client Facade The fa ade provides a unified interface that is easier to use A B C D E F A complex subsystem

  45. Faade (structural) The Fa ade Pattern provides a unified interface to a set of interfaces in a subsystem. Fa ade defines a higher-level interface that makes the system easier to use. Client Facade Design Principle Principle of least knowledge - talk only to your immediate friends. A B C D E F

  46. Proxy (structural) request() request() Client Real Subject Proxy The Proxy Pattern provides a surrogate or placeholder for another object to access control to it.

  47. Proxy (structural) request() request() Client Real Subject Proxy A remote object With Remote Proxy, the proxy act as a local representative for an object that lives in a different JVM.

  48. Proxy (structural) request() request() Client Real Subject Proxy Virtual Proxy acts as a representative for an object that may be expensive to create. The virtual proxy often defers creation of the object until it is needed. After that, the virtual proxy delegates requests to the RealSubject.

  49. Proxy (structural) <<interface>> Subject request() Proxy RealSubject subject request() request() The RealSubject does most of the work. The Proxy controls access to it. The Proxy often instantiates or handles creation of the RealSubject.

  50. Flyweight (structural) Intrinsic state is stored in the ConcreteFlyweight object Extrinsic state is stored or computed by Client objects. Clients pass this state to the flyweight when they invoke they operations Clients should not instantiate ConcreteFlyweights directly. Clients must obtain ConcreteFlyweights from the FlyweightFactory to ensure they are shared properly. not all Flyweight objects need to be shared. It is common for UnsharedConcreteFlyweight objects to have ConcreteFlyweight objects as children.

Related