Cargando…

Learning Python design patterns : leverage the power of Python design patterns to solve real-world problems in software architecture and design /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Giridhar, Chetan (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Pack Publishing, 2016.
Edición:Second edition.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)
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