|
|
|
|
LEADER |
00000cam a2200000 i 4500 |
001 |
EBOOKCENTRAL_ocn880672276 |
003 |
OCoLC |
005 |
20240329122006.0 |
006 |
m o d |
007 |
cr ||||||||||| |
008 |
140527s2014 nju ob 001 0 eng |
010 |
|
|
|a 2014020536
|
040 |
|
|
|a DLC
|b eng
|e rda
|e pn
|c DLC
|d YDX
|d OCLCF
|d N$T
|d YDXCP
|d TEFOD
|d EBLCP
|d CCO
|d DEBSZ
|d RECBK
|d TEFOD
|d ZCU
|d MERUC
|d OCLCQ
|d OCLCO
|d ICG
|d NTG
|d VT2
|d OCLCQ
|d OCLCO
|d WYU
|d DKC
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|d OCLCL
|
019 |
|
|
|a 898421441
|a 903173750
|a 966572210
|
020 |
|
|
|a 9781118902561
|q (ePub)
|
020 |
|
|
|a 1118902564
|q (ePub)
|
020 |
|
|
|a 9781118903421
|q (Adobe PDF)
|
020 |
|
|
|a 1118903420
|q (Adobe PDF)
|
020 |
|
|
|z 9781118581209
|q (paperback)
|
028 |
0 |
1 |
|a EB00592800
|b Recorded Books
|
029 |
1 |
|
|a AU@
|b 000062388504
|
029 |
1 |
|
|a CHNEW
|b 000889756
|
029 |
1 |
|
|a DEBBG
|b BV043615952
|
029 |
1 |
|
|a DEBSZ
|b 425936422
|
029 |
1 |
|
|a DEBSZ
|b 431873860
|
029 |
1 |
|
|a DEBSZ
|b 449477029
|
035 |
|
|
|a (OCoLC)880672276
|z (OCoLC)898421441
|z (OCoLC)903173750
|z (OCoLC)966572210
|
037 |
|
|
|a E0A23B88-A599-47E6-A135-9507947FE88C
|b OverDrive, Inc.
|n http://www.overdrive.com
|
042 |
|
|
|a pcc
|
050 |
0 |
0 |
|a QA76.64
|
072 |
|
7 |
|a COM
|x 051210
|2 bisacsh
|
082 |
0 |
0 |
|a 005.1/17
|2 23
|
084 |
|
|
|a COM051210
|2 bisacsh
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Kak, Avinash C.
|
245 |
1 |
0 |
|a Designing with objects :
|b object-oriented design patterns explained with stories from Harry Potter /
|c Avinash C. Kak.
|
264 |
|
1 |
|a Hoboken, New Jersey :
|b John Wiley & Sons, Inc.,
|c 2014.
|
300 |
|
|
|a 1 online resource
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
504 |
|
|
|a Includes bibliographical references and index.
|
520 |
|
|
|a "All code examples in the book are available for download on a companion site with resources for readers and instructors. A refreshing alternative to the rather abstract and dry explanations of the object-oriented design patterns in much of the existing literature on the subject In 24 chapters, Designing with Objects explains well-known design patterns by relating them to stories from the Harry Potter series"--
|c Provided by publisher.
|
520 |
|
|
|a "Designing with Objects is the only book that explains object-oriented design patterns through examples that are based on Harry Potter stories"--
|c Provided by publisher.
|
588 |
0 |
|
|a Print version record and CIP data provided by publisher.
|
505 |
0 |
|
|a Title Page; Copyright Page; Contents; Preface; Acknowledgments; Chapter 1 Why Learn Design Patterns and Why Do So with Help from Harry Potter?; 1.1 The OO Design Patterns "Bible" by GoF; 1.2 But What Has Harry Potter Got to Do with OO Design Patterns?; 1.3 Is Familiarity with Harry Potter a Requirement for Understanding This Book?; 1.4 How the Pattern Explanations are Organized; 1.5 The Terminology of Object-Oriented Programming; 1.6 The UML Notation Used in the Class Diagrams; 1.6.1 Association as a Relationship Between Classes.
|
505 |
8 |
|
|a 1.6.2 Aggregation and Composition as Relationships Between Classes1.6.3 Representing Attributes; 1.6.4 Representing Operations; Part I Creational Patterns; Chapter 2 Abstract Factory; 2.1 The Concept of a Factory in Software; 2.2 Intent and Applicability; 2.3 Introduction to the Abstract Factory Pattern; 2.4 The Abstract Factory Pattern in Real-World Applications; 2.5 Harry Potter Story Used to Illustrate the Abstract Factory Pattern; 2.6 A Top Level View of the Pattern Demonstration; 2.7 The Abstract Class Factory; 2.8 The Helper Class FactoryStore; 2.9 The Abstract Class Enchanted.
|
505 |
8 |
|
|a 2.10 The Concrete Classes for Magical Objects2.11 The Concrete Factory Classes; 2.12 The Client Class Diagon AlleyRetailer; 2.13 Playing with the Code; Chapter 3 Builder; 3.1 Building Complex Objects; 3.2 Intent and Applicability; 3.3 Introduction to the Builder Pattern; 3.4 The Builder Pattern in Real-World Applications; 3.5 Harry Potter Story Used to Illustrate the Builder Pattern; 3.6 A Top-Level View of the Pattern Demonstration; 3.7 The Abstract Class PotionMaker; 3.8 The Concrete Extensions of PotionMaker; 3.9 The Director Class; 3.10 The Potion Class; 3.11 The Ingredient Class.
|
505 |
8 |
|
|a 3.12 The PotionMakingFeasibilityViolation Class3.13 The Client Class; 3.14 Playing with the Code; Chapter 4 Factory Method; 4.1 Revisiting the Concept of a Factory in Software; 4.2 Intent and Applicability; 4.3 Introduction to the Factory Method Pattern; 4.4 The Factory Method Pattern in Real-World Applications; 4.5 Harry Potter Story Used to Illustrate the Factory Method Pattern; 4.6 A Top Level View of the Pattern Demonstration; 4.7 The Enchanted Class Hierarchy; 4.8 The ArtifactFactory Class Hierarchy and the Factory Methods Contained Therein; 4.9 The Client Class.
|
505 |
8 |
|
|a 4.10 Playing with the CodeChapter 5 Prototype; 5.1 Why Not Make New Objects by Copying Old Objects?; 5.2 Intent and Applicability; 5.3 Introduction to the Prototype Pattern; 5.4 The Prototype Pattern in Real-World Applications; 5.5 Harry Potter Story Used to Illustrate The Prototype Pattern; 5.6 A Top Level View of the Pattern Demonstration; 5.7 The Dragon Class; 5.8 The PrototypeManagerAndDuplicator Class; 5.9 The DragonAficionado Class; 5.10 The UnknownDragonException Class; 5.11 Playing with the Code; Chapter 6 Singleton; 6.1 Singular Objects; 6.2 Intent and Applicability.
|
590 |
|
|
|a ProQuest Ebook Central
|b Ebook Central Academic Complete
|
600 |
1 |
0 |
|a Rowling, J. K.
|x Themes, motives.
|
600 |
1 |
0 |
|a Rowling, J. K.
|x Characters.
|
600 |
1 |
0 |
|a Potter, Harry
|c (Fictitious character)
|
600 |
1 |
7 |
|a Rowling, J. K.
|2 fast
|
600 |
1 |
7 |
|a Potter, Harry
|c (Fictitious character)
|2 fast
|
650 |
|
0 |
|a Object-oriented programming (Computer science)
|
650 |
|
6 |
|a Programmation orientée objet (Informatique)
|
650 |
|
7 |
|a COMPUTERS
|x Programming
|x Object Oriented.
|2 bisacsh
|
650 |
|
7 |
|a Characters and characteristics
|2 fast
|
650 |
|
7 |
|a Object-oriented programming (Computer science)
|2 fast
|
650 |
|
7 |
|a Themes, motives
|2 fast
|
758 |
|
|
|i has work:
|a Designing with objects (Text)
|1 https://id.oclc.org/worldcat/entity/E39PCGxddrTtgPBfbyBTj67Rw3
|4 https://id.oclc.org/worldcat/ontology/hasWork
|
776 |
0 |
8 |
|i Print version:
|a Kak, Avinash C.
|t Designing with objects.
|d Hoboken, New Jersey : John Wiley & Sons, Inc., 2014
|z 9781118581209
|w (DLC) 2014007132
|
856 |
4 |
0 |
|u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=1895727
|z Texto completo
|
938 |
|
|
|a EBL - Ebook Library
|b EBLB
|n EBL1895727
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 928787
|
938 |
|
|
|a Recorded Books, LLC
|b RECE
|n rbeEB00592800
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 12217502
|
994 |
|
|
|a 92
|b IZTAP
|