- Format
- Häftad (Paperback)
- Språk
- Engelska
- Antal sidor
- 158
- Utgivningsdatum
- 2007-11-01
- Upplaga
- 1
- Förlag
- ADDISON-WESLEY
- Illustratör/Fotograf
- illustrations
- Illustrationer
- illustrations
- Dimensioner
- 233 x 176 x 12 mm
- Vikt
- Antal komponenter
- 1
- ISBN
- 9780321413093
- 340 g
Du kanske gillar
-
Implementation Patterns
av Kent Beck365- Skickas inom 5-8 vardagar.
- Gratis frakt inom Sverige över 199 kr för privatpersoner.
Passar bra ihop
De som köpt den här boken har ofta också köpt Java How to Program, Late Objects, Global Edition av Paul Deitel (häftad).
Köp båda 2 för 1167 krKundrecensioner
Har du läst boken? Sätt ditt betyg »Fler böcker av Kent Beck
-
Test Driven Development: By Example
Kent Beck
-
Extreme Programming Explained: Embrace Change
Kent Beck, Cynthia Andres
-
Smalltalk Best Practice Patterns
Kent Beck
-
JUnit Pocket Guide
Kent Beck
Övrig information
Kent Beck (Merlin, OR), one of the software industry's most creative and acclaimed leaders, passionately employs patterns, extreme programming, and test-driven development. Kent is the founder and director of TRI. He has pioneered patterns for software development, the xUnit family of testing frameworks, the HotDraw drawing editor framework, CRC cards, refactoring, and most recently Extreme Programming. He is the author of Extreme Programming Explained, Planning Extreme Programming and The Smalltalk Best Practice Patterns.
Innehållsförteckning
Preface xv
Chapter 1: Introduction 1
Tour Guide 3
And Now... 4
Chapter 2: Patterns 5
Chapter 3: A Theory of Programming 9
Values 10
Principles 13
Conclusion 18
Chapter 4: Motivation 19
Chapter 5: Class 21
Class 22
Simple Superclass Name 23
Qualified Subclass Name 24
Abstract Interface 24
Interface 26
Abstract Class 26
Versioned Interface 27
Value Object 28
Specialization 31
Subclass 32
Implementor 34
Inner Class 34
Instance-Specific Behavior 36
Conditional 36
Delegation 38
Pluggable Selector 40
Anonymous Inner Class 41
Library Class 41
Conclusion 42
Chapter 6: State 43
State 44
Access 45
Direct Access 46
Indirect Access 47
Common State 47
Variable State 48
Extrinsic State 50
Variable 50
Local Variable 51
Field 52
Parameter 53
Collecting Parameter 55
Optional Parameter 56
Var Args 56
Parameter Object 57
Constant 58
Role-Suggesting Name 58
Declared Type 60
Initialization 61
Eager Initialization 61
Lazy Initialization 62
Conclusion 62
Chapter 7: Behavior 63
Control Flow 64
Main Flow 64
Message 65
Choosing Message 65
Double Dispatch 66
Decomposing (Sequencing) Message 67
Reversing Message 67
Inviting Message 68
Explaining Message 69
Exceptional Flow 70
Guard Clause 70
Exception 72
Checked Exceptions 72
Exception Propagation 73
Conclusion 73
Chapter 8: Methods 75
Composed Method 77
Intention-Revealing Name 79
Method Visibility 80
Method Object 82
Overridden Method 83
Overloaded Method 83
Method Return Type 84
Method Comment 85
Helper Method 85
Debug Print Method 86
Conversion 87
Conversion Method 87
Conversion Constructor 88
Creation 88
Complete Constructor 89
Factory Method 90
Internal Factory 91
Collection Accessor Method 91
Boolean Setting Method 93
Query Method 93
Equality Method 94
Getting Method 95
Setting Method 96
Safe Copy 97
Conclusion 98
Chapter 9: ...