Fundamentals of object-oriented design in UML

cover image

Where to find it

Information & Library Science Library

Call Number
QA76.64 .P33 2000
Status
Available

Summary

Object technology is increasingly recognized as a valuable tool in application development, but what is not yet recognized is the importance of design in the construction of robust and adaptable object-oriented (OO) applications. With the recent introduction and widespread adoption of the Unified Modeling Language (UML), programmers are now equipped with a powerful tool for expressing software designs. Fundamentals of Object-Oriented Design in UML shows aspiring and experienced programmers alike how to apply design concepts, the UML, and the best practices in OO development to improve both their code and their success rates with object-based projects. In the first two chapters, best-selling author Meilir Page-Jones introduces novices to key concepts and terminology, demystifying the jargon, and providing a context in which to view object orientation. Part II is a practical and well-illustrated guide to UML notation and to building the most useful UML diagrams. Part III grapples with advanced topics in the testing and improvement of design quality, including connascence, level-2 encapsulation, and the use of state-space and behavior to assess class hierarchies. These design principl

Contents

  • Foreword p. xv
  • Preface p. xvii
  • Part I Introduction p. 1
  • Chapter 1 What Does It Mean to Be Object Oriented, Anyway? p. 3
  • 1.1 Encapsulation p. 9
  • 1.2 Information/Implementation Hiding p. 12
  • 1.3 State Retention p. 14
  • 1.4 Object Identity p. 15
  • 1.5 Messages p. 19
  • 1.5.1 Message structure p. 19
  • 1.5.2 Message arguments p. 21
  • 1.5.3 The roles of objects in messages p. 23
  • 1.5.4 Types of message p. 25
  • 1.6 Classes p. 27
  • 1.7 Inheritance p. 33
  • 1.8 Polymorphism p. 38
  • 1.9 Genericity p. 43
  • 1.10 Summary p. 48
  • 1.11 Exercises p. 50
  • 1.12 Answers p. 52
  • Chapter 2 A Brief History of Object Orientation p. 57
  • 2.1 Where Did Object Orientation Come From? p. 57
  • 2.1.1 Larry Constantine p. 58
  • 2.1.2 O.-J. Dahl and K. Nygaard p. 58
  • 2.1.3 Alan Kay, Adele Goldberg, and others p. 58
  • 2.1.4 Edsger Dijkstra p. 58
  • 2.1.5 Barbara Liskov p. 59
  • 2.1.6 David Parnas p. 59
  • 2.1.7 Jean Ichbiah and others p. 59
  • 2.1.8 Bjarne Stroustrup p. 59
  • 2.1.9 Bertrand Meyer p. 60
  • 2.1.10 Grady Booch, Ivar Jacobson, and Jim Rumbaugh p. 60
  • 2.2 Object Orientation Comes of Age p. 60
  • 2.3 Object Orientation As an Engineering Discipline p. 62
  • 2.4 What's Object Orientation Good For? p. 64
  • 2.4.1 Analyzing users' requirements p. 65
  • 2.4.2 Designing software p. 65
  • 2.4.3 Constructing software p. 66
  • 2.4.4 Maintaining software p. 69
  • 2.4.5 Using software p. 69
  • 2.4.6 Managing software projects p. 70
  • 2.5 Summary p. 73
  • 2.6 Exercises p. 75
  • 2.7 Answers p. 76
  • Part II The Unified Modeling Language p. 77
  • Chapter 3 Basic Expression of Classes, Attributes, and Operations p. 85
  • 3.1 The Class p. 85
  • 3.2 Attributes p. 87
  • 3.3 Operations p. 89
  • 3.4 Overloaded Operations p. 92
  • 3.5 Visibility of Attributes and Operations p. 93
  • 3.6 Class Attributes and Operations p. 94
  • 3.7 Abstract Operations and Classes p. 95
  • 3.8 The Utility p. 97
  • 3.9 Parameterized Classes p. 98
  • 3.10 Summary p. 100
  • 3.11 Exercises p. 102
  • 3.12 Answers p. 103
  • Chapter 4 Class Diagrams p. 107
  • 4.1 The Generalization Construct p. 108
  • 4.1.1 Single inheritance p. 108
  • 4.1.2 Multiple inheritance p. 110
  • 4.1.3 Subclass partitioning p. 110
  • 4.1.4 Partitioning discriminators p. 114
  • 4.2 The Association Construct p. 115
  • 4.2.1 The basic UML notation for associations p. 116
  • 4.2.2 Associations depicted as classes p. 119
  • 4.2.3 Higher-order associations p. 120
  • 4.2.4 Navigability of associations p. 122
  • 4.3 Whole/Part Associations p. 123
  • 4.3.1 Composition p. 123
  • 4.3.2 Aggregation p. 126
  • 4.4 Summary p. 130
  • 4.5 Exercises p. 131
  • 4.6 Answers p. 133
  • Chapter 5 Object-Interaction Diagrams p. 137
  • 5.1 The Collaboration Diagram p. 138
  • 5.1.1 Depicting a message p. 139
  • 5.1.2 Polymorphism in the collaboration diagram p. 142
  • 5.1.3 Iterated messages p. 143
  • 5.1.4 Use of self in messages p. 144
  • 5.2 The Sequence Diagram p. 146
  • 5.3 Asynchronous Messages and Concurrent Execution p. 149
  • 5.3.1 Depicting an asynchronous message p. 149
  • 5.3.2 The callback mechanism p. 151
  • 5.3.3 Asynchronous messages with priority p. 155
  • 5.3.4 Depicting a broadcast (nontargeted) message p. 157
  • 5.4 Summary p. 159
  • 5.5 Exercises p. 161
  • 5.6 Answers p. 162
  • Chapter 6 State Diagrams p. 164
  • 6.1 Basic State Diagrams p. 165
  • 6.2 Nested States p. 167
  • 6.3 Concurrent States and Synchronization p. 171
  • 6.4 Transient States from Message-Result Arguments p. 176
  • 6.5 Continuously Variable Attributes p. 178
  • 6.6 Summary p. 180
  • 6.7 Exercises p. 182
  • 6.8 Answers p. 184
  • Chapter 7 Architecture and Interface Diagrams p. 188
  • 7.1 Depicting System Architecture p. 189
  • 7.1.1 Packages p. 189
  • 7.1.2 Deployment diagrams for hardware artifacts p. 191
  • 7.1.3 Deployment diagrams for software constructs p. 193
  • 7.2 Depicting the Human Interface p. 196
  • 7.2.1 The window-layout diagram p. 196
  • 7.2.2 The window-navigation diagram p. 198
  • 7.2.3 A brief digression: What's object oriented about a GUI? p. 200
  • 7.3 Summary p. 202
  • 7.4 Exercises p. 203
  • 7.5 Answers p. 204
  • Part III The Principles of Object-Oriented Design p. 207
  • Chapter 8 Encapsulation and Connascence p. 209
  • 8.1 Encapsulation Structure p. 209
  • 8.1.1 Levels of encapsulation p. 210
  • 8.1.2 Design criteria governing interacting levels of encapsulation p. 212
  • 8.2 Connascence p. 214
  • 8.2.1 Varieties of connascence p. 214
  • 8.2.2 Contranascence p. 220
  • 8.2.3 Connascence and encapsulation boundaries p. 221
  • 8.2.4 Connascence and maintainability p. 222
  • 8.2.5 Connascence abuses in object-oriented systems p. 224
  • 8.2.6 The term connascence p. 227
  • 8.3 Summary p. 228
  • 8.4 Exercises p. 230
  • 8.5 Answers p. 231
  • Chapter 9 Domains, Encumbrance, and Cohesion p. 233
  • 9.1 Domains of Object Classes p. 234
  • 9.1.1 The foundation domain p. 235
  • 9.1.2 The architecture domain p. 235
  • 9.1.3 The business domain p. 236
  • 9.1.4 The application domain p. 237
  • 9.1.5 The source of classes in each domain p. 238
  • 9.2 Encumbrance p. 241
  • 9.2.1 What is encumbrance? p. 241
  • 9.2.2 The use of encumbrance p. 244
  • 9.2.3 The Law of Demeter p. 244
  • 9.3 Class Cohesion: A Class and Its Features p. 246
  • 9.3.1 Mixed-instance cohesion p. 247
  • 9.3.2 Mixed-domain cohesion p. 248
  • 9.3.3 Mixed-role cohesion p. 250
  • 9.4 Summary p. 253
  • 9.5 Exercises p. 254
  • 9.6 Answers p. 255
  • Chapter 10 State-Space and Behavior p. 259
  • 10.1 State-Space and Behavior of a Class p. 259
  • 10.2 The State-Space of a Subclass p. 263
  • 10.3 The Behavior of a Subclass p. 266
  • 10.4 The Class Invariant as a Restriction on a State-Space p. 267
  • 10.5 Preconditions and Postconditions p. 269
  • 10.6 Summary p. 272
  • 10.7 Exercises p. 273
  • 10.8 Answers p. 274
  • Chapter 11 Type Conformance and Closed Behavior p. 278
  • 11.1 Class versus Type p. 279
  • 11.2 The Principle of Type Conformance p. 281
  • 11.2.1 The principles of contravariance and covariance p. 282
  • 11.2.2 An example of contravariance and covariance p. 283
  • 11.2.3 A graphic illustration of contravariance and covariance p. 288
  • 11.2.4 A summary of the requirements for type conformance p. 290
  • 11.3 The Principle of Closed Behavior p. 291
  • 11.4 Summary p. 294
  • 11.2 Exercises p. 295
  • 11.6 Answers p. 296
  • Chapter 12 The Perils of Inheritance and Polymorphism p. 299
  • 12.1 Abuses of Inheritance p. 299
  • 12.1.1 Mistaken aggregates p. 300
  • 12.1.2 Inverted hierarchy p. 301
  • 12.1.3 Confusing class and instance p. 302
  • 12.1.4 Misapplying is a p. 306
  • 12.2 The Danger of Polymorphism p. 309
  • 12.2.1 Polymorphism of operations p. 309
  • 12.2.2 Polymorphism of variables p. 312
  • 12.2.3 Polymorphism in messages p. 314
  • 12.2.4 Polymorphism and genericity p. 316
  • 12.3 Summary p. 319
  • 12.4 Exercises p. 320
  • 12.5 Answers p. 322
  • Chapter 13 Techniques for Organizing Operations p. 327
  • 13.1 Mix-In Classes p. 327
  • 13.1.1 A business example p. 328
  • 13.1.2 A graphics example p. 333
  • 13.2 Rings of Operations p. 336
  • 13.3 Summary p. 342
  • 13.4 Exercises p. 343
  • 13.5 Answers p. 344
  • Chapter 14 Class Cohesion and Support of States and Behavior p. 349
  • 14.1 State Support in a Class Interface p. 350
  • 14.2 Behavior Support in a Class Interface p. 352
  • 14.3 Operation Cohesion in a Class Interface p. 360
  • 14.4 Summary p. 364
  • 14.5 Exercises p. 366
  • 14.6 Answers p. 371
  • Chapter 15 Designing a Software Component p. 377
  • 15.1 What Is a Component? p. 378
  • 15.2 Similarities and Differences Between Components and Objects p. 380
  • 15.3 Example of a Component p. 382
  • 15.4 Internal Design of a Component p. 389
  • 15.5 Lightweight and Heavyweight Components p. 397
  • 15.6 Advantages and Disadvantages of Using Components p. 400
  • 15.7 Summary p. 406
  • 15.8 Exercises p. 408
  • 15.9 Answers p. 409
  • Appendix A Checklist for an Object-Oriented Design Walkthrough p. 411
  • Appendix B The Object-Oriented Design Owner's Manual p. 417
  • Appendix C The Blitz Guide to Object-Oriented Terminology p. 423
  • Glossary p. 425
  • Bibliography p. 443
  • Index p. 451

Sample chapter

"You say you want some evolution. Well, you know, I'm just doing what I can." -- Charles Darwin, On the Origin of Species People who reviewed this book in its draft form had several questions for me, questions that perhaps you share. Let me address some of them. I'm a programmer. Why should I care about design? Everyone who writes code also designs code -- either well or badly, either consciously or unconsciously. My goal in writing this book is to encourage people working in OO -- and their number increases annually - to create good object-oriented designs consciously and prior to coding. To this end, I introduce notation, principles and terminology that you and your colleagues can use to evaluate your designs and to discuss them meaningfully with one another. I'm not yet an OO programmer. Will this book teach me an OO programming language? No. Although I occasionally swoop down close to code, this isn't a book on object-oriented programming. But if I'm learning an object-oriented language, will this book help? Yes, it will. If you don't currently know an object-oriented programming language, you can begin your object-oriented knowledge with Chapter 1. Knowing the key concepts of object orientation will speed your learning an object-oriented language and, I hope, boost your morale as you move into unfamiliar territory. The later chapters of the book, on sound design, will also help you in getting your early programs to work successfully. On the other hand, if you're already an experienced object-oriented programmer, you can use Parts II and III of the book to enhance the design skills that are vital to your being a rounded, professional software designer or programmer. Why aren't the code examples in this book in C++? I've written the code in this book in a language of my own devising, which is a blend of four popular languages: C++, Eiffel, Java and Smalltalk. I did this because there are two kinds of programmers: those who are fluent in C++ and those who aren't. If you're a C++ aficionado, then you'll find the code a breeze to translate into C++. If you're not familiar with C++, then you might have found the language's arcane syntax getting in the way of the examples. I'd like you to feel welcome in this book whatever your programming language might be. However, there is a fragment of Java in this book. I used Java because it's more accessible to a non-Java programmer than C++ is to a non-C++ programmer. Why isn't this book devoted to the design of windows, icons and menus? There are two reasons: First, I don't believe that object orientation is useful only for the design of graphical user interfaces. Second, there are many books on the market devoted solely to the topic of object-oriented window design. I want this book to cover topics that are not well covered by the other object-oriented books on the market. However, in Chapter 7 I offer some notation for window-navigation design. Is this book about a methodology? No. As you know, a development methodology contains much more than design. For example, there's requirements analysis, library management and so on. Also, a true methodology needs to explain how the various development activities fit together. A lot of stuff! So, instead of turning out a book as diffuse as many other books on object orientation, I decided to focus on a single topic: object-oriented design. You've said a lot about what this book isn't about. What is it about? It's about the fundamental ideas, notation, terminology, criteria and principles of object-oriented software design. Object-oriented software is software that comprises objects and the classes to which they belong. An object is a component in which methods (which are like functions or procedures) are organized around a set of variables (which are like data). A class implements a type defining the group of objects that belong to that class. The above modest sentences hold some surprising implications for software designers and programmers, implications that arise from the design concepts of inheritance, polymorphism and second-order design. But, since you asked a specific question, let me give you a specific answer. Part I of the book (Chapters 1-2) provides an introduction to object orientation. Chapter 1 summarizes the key concepts and demystifies "polymorphism," "genericity," and all the other OO jargon. Chapter 2 sets object orientation into the framework of previous developments in software. If you're already familiar with object orientation (perhaps by having programmed in an object-oriented language), then you can skip or skim Part I. Part II (Chapters 3-7) covers the Unified Modeling Language (UML), which has become the de facto standard notation for depicting object-oriented design. In passing, Part II also illustrates many of the structures that you find in object-oriented systems. Chapter 3 introduces the UML for depicting classes, along with their attributes and operations. Chapter 4 covers UML for hierarchies of subclasses and superclasses, associations, and aggregate and composite objects. Chapter 5 sets out UML for messages (both sequential and asynchronous), while Chapter 6 covers UML for state diagrams. Chapter 7 reviews UML for system architecture and the windows that form a human interface. Part III (Chapters 8-14) covers object-oriented design principles in some depth. Chapter 8 sets the scene with the crucial notions of connascence and level-2 encapsulation. Chapter 9 explores the various domains that "classes come from" and describes different degrees of class cohesion. Chapters 10 and 11 form the central pillar of Part III, using the concepts of state-space and behavior to assess when a class hierarchy is both sound and extendible. Chapter 12 offers some light relief, as it examines designs taken from real projects, including both the subtle and the absurd. (Chapter 12 is really about the dangers of abusing inheritance and polymorphism.) Chapter 13 looks at some ways of organizing operations within a given class, and explains design techniques such as mix-in classes and operation rings that will improve class reusability and maintainability. Chapter 14 rounds off the book by taking a stab at the old question: "What makes a good class?" In answering this question, Chapter 14 describes the various kinds of class interface, ranging from the horrid to the sublime. A class with an exemplary interface will be a worthy implementation of an abstract data-type. If the class also obeys the fundamental principles laid out in earlier chapters, then it will be as robust, reliable, extensible, reusable and maintainable as a class can ever be. Chapter 15 traces the development of an object-oriented component for a business application. In following the component's construction, I recall some of the object-oriented principles of the previous chapters. Although I've added plenty of examples, diagrams and exercises to reinforce what I say in the main text, I must admit that the material in Part III gets tough at times. Nevertheless, I decided not to trivialize or dilute important issues. Some aspects of object-oriented design are difficult and to suggest otherwise would be to patronize you. Anyway, I know you can take it! Does this book cover everything in object-oriented design? I very much doubt it. Each day, I learn more about object orientation, and I'm sure you do too. Indeed, it would be a dull world if a single book could tell us everything about object-oriented design and leave us with nothing more to learn. And everything in this book may not be completely true! I certainly changed my mind about one or two things after I wrote my previous books, as I became older and wiser -- well older, anyway. So, although I think that I've covered many important design principles in this book, if you're serious about object orientation you should continue to read as much as you can and always challenge what you read. Do you offer courses on object-oriented design? Yes, we offer several courses on object-oriented topics. Our curriculum continually changes, so check out www.waysys.com for our latest offerings. Bottom-line, as they say: Is this book for me? What kind of question is that? You expect me to say "No!"? But seriously, folks, this book's for you if you are -- or are about to become -- a programmer, designer, systems engineer or technical manager on a project using object-oriented techniques. Even if you're a beginner to object orientation, you can glean a lot from this book by reading Part I, practicing some object-oriented programming and then returning to Parts II and III. You should also read this book if you're a university student or professional programmer who has mastered the techniques of standard procedural programming and is looking for wider horizons. Much of the book's material is suitable for a final-year computer-science or software-engineering course in object orientation. But, whatever your role in life, I hope that you enjoy this book and find it useful. Good luck! Meilir Page-Jones meilir@waysys.com Bellevue, Washington July 1999 020169946XP04062001 Excerpted from Fundamentals of Object-Oriented Design in UML by Meilir Page-Jones All rights reserved by the original copyright owners. Excerpts are provided for display purposes only and may not be reproduced, reprinted or distributed without the written permission of the publisher.

Other details