Learning Python design patterns leverage the power of Python design patterns to solve real-world problems in software architecture and design
Leverage the power of Python design patterns to solve real-world problems in software architecture and design About This Book Understand the structural, creational, and behavioral Python design patterns Get to know the context and application of design patterns to solve real-world problems in softwa...
Otros Autores: | |
---|---|
Formato: | Libro electrónico |
Idioma: | Inglés |
Publicado: |
Birmingham :
Packt Publishing
2016.
|
Edición: | 2nd ed |
Colección: | Community experience distilled.
|
Materias: | |
Ver en Biblioteca Universitat Ramon Llull: | https://discovery.url.edu/permalink/34CSUC_URL/1im36ta/alma991009630111506719 |
Tabla de Contenidos:
- Cover ; Copyright; Credits; Foreword; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introduction to Design Patterns ; Understanding object-oriented programming; Objects; Classes; Methods; Major aspects of object-oriented programming; Encapsulation; Polymorphism; Inheritance; Abstraction; Composition; Object-oriented design principles; The open/close principle; The inversion of control principle; The interface segregation principle; The single responsibility principle; The substitution principle; The concept of design patterns
- Advantages of design patternsTaxonomy of design patterns; Context - the applicability of design patterns; Patterns for dynamic languages; Classifying patterns; Creational patterns:; Structural patterns; Behavioral patterns; Summary; Chapter 2: The Singleton Design Pattern ; Understanding the Singleton design pattern; Implementing a classical Singleton in Python; Lazy instantiation in the Singleton pattern; Module-level Singletons; The Monostate Singleton pattern; Singletons and metaclasses; A real-world scenario - the Singleton pattern, part 1
- A real-world scenario - the Singleton pattern, part 2Drawbacks of the Singleton pattern; Summary; Chapter 3: Factory Pattern - Building Factories to Create Objects ; Understanding the Factory pattern; The Simple Factory pattern; The Factory Method pattern; Implementing the Factory Method; Advantages of the Factory method pattern; The Abstract Factory pattern; Implementing the Abstract Factory pattern; The Factory Method versus Abstract Factory; Summary; Chapter 4: The Façade Pattern - Being Adaptive with Façade ; Understanding Structural design patterns
- Understanding the Façade design patternA UML class diagram; Façade; System; Client; Implementing the Façade pattern in the real world; The principle of least knowledge; Frequently asked questions; Summary; Chapter 5: The Proxy Pattern - Controlling Object Access ; Understanding the Proxy design pattern; A UML class diagram for the Proxy pattern; Understanding different types of Proxies; A virtual proxy; A remote proxy; A protective proxy; A smart proxy; The Proxy pattern in the real world; Advantages of the Proxy pattern; Comparing the Façade and Proxy patterns; Frequently asked questions
- SummaryChapter 6: The Observer Pattern - Keeping Objects in the Know ; Introducing Behavioral patterns; Understanding the Observer design pattern; A UML class diagram for the Observer pattern; The Observer pattern in the real world; The Observer pattern methods; The pull model; The push model; Loose coupling and the Observer pattern; The Observer pattern - advantages and disadvantages; Frequently asked questions; Summary; Chapter 7: The Command Pattern - Encapsulating Invocation ; Introducing the Command pattern; Understanding the Command design pattern
- A UML class diagram for the Command pattern