Cargando…

Implementation patterns /

"Great code doesn t just happen. It is the outcome of hundreds of small but critical decisions programmers make every single day. Now, software innovator Kent Beck focuses on these critical decisions, unearthing "implementation patterns" for writing programs that are simpler, clearer,...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Beck, Kent
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Upper Saddle River, N.J. : Addison-Wesley, ©2008.
Colección:Addison-Wesley signature series.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)
Tabla de Contenidos:
  • Ch. 1. Introduction
  • Tour Guide
  • And Now
  • Ch. 2. Patterns
  • Ch. 3. A Theory of Programming
  • Values
  • Communication
  • Simplicity
  • Flexibility
  • Principles
  • Local Consequences
  • Minimize Repetition
  • Logic and Data Together
  • Symmetry
  • Declarative Expression
  • Rate of Change
  • Ch. 4. Motivation
  • Ch. 5. Class
  • Class
  • Simple Superclass Name
  • Qualified Subclass Name
  • Abstract Interface
  • Interface
  • Abstract Class
  • Versioned Interface
  • Value Object
  • Specialization
  • Subclass
  • Implementor
  • Inner Class
  • Instance-Specific Behavior
  • Conditional
  • Delegation
  • Pluggable Selector
  • Anonymous Inner Class
  • Library Class
  • Ch. 6. State
  • State
  • Access
  • Direct Access
  • Indirect Access
  • Common State
  • Variable State
  • Extrinsic State
  • Variable
  • Local Variable
  • Field
  • Parameter
  • Collecting Parameter
  • Optional Parameter
  • Var Args
  • Parameter Object
  • Constant
  • Role-Suggesting Name
  • Declared Type
  • Initialization
  • Eager Initialization
  • Lazy Initialization
  • Ch. 7. Behavior
  • Control Flow
  • Main Flow
  • Message
  • Choosing Message
  • Double Dispatch
  • Decomposing (Sequencing) Message
  • Reversing Message
  • Inviting Message
  • Explaining Message
  • Exceptional Flow
  • Guard Clause
  • Exception
  • Checked Exceptions
  • Exception Propagation
  • Ch. 8. Methods
  • Composed Method
  • Intention-Revealing Name
  • Method Visibility
  • Method Object
  • Overridden Method
  • Overloaded Method
  • Method Return Type
  • Method Comment
  • Helper Method
  • Debug Print Method
  • Conversion
  • Conversion Method
  • Conversion Constructor
  • Creation
  • Complete Constructor
  • Factory Method
  • Internal Factory
  • Collection Accessor Method
  • Boolean Setting Method
  • Query Method
  • Equality Method
  • Getting Method
  • Setting Method
  • Safe Copy
  • Ch. 9. Collections
  • Metaphors
  • Issues
  • Interfaces
  • Array
  • Iterable
  • Collection
  • List
  • Set
  • Sorted Set
  • Map
  • Implementations
  • Collection
  • List
  • Set
  • Map
  • Collections
  • Searching
  • Sorting
  • Unmodifiable Collections
  • Single-Element Collections
  • Empty Collections
  • Extending Collections
  • Ch. 10. Evolving Frameworks
  • Changing Frameworks without Changing Applications
  • Incompatible Upgrades
  • Encouraging Compatible Change
  • Library Class
  • Objects
  • App. A. Performance Measurement
  • Example
  • Api
  • Implementation
  • MethodTimer
  • Canceling Overhead
  • Tests
  • Comparing Collections
  • Comparing ArrayList and LinkedList
  • Comparing Sets
  • Comparing Maps
  • General Programming
  • Philosophy
  • Java.