I am re-reading Code Complete (Second Edition) since I read it in College. I got to the Second Chapter about the importance of metaphors and was curious what metaphor is/was most helpful to you in understanding software design/construction? I was looking for metaphors focused on Polymorphism, Inheritance, Encapsulation and Design Patterns that might be useful in helping others understand these key topics in Object Oriented Design.
|
|
I found GoF Pattern Metaphors and so far my favorite one is the Singleton Metaphor (not design pattern)
|
|||||||||||||||||||
|
|
ire_and_curses post about Duck Typing
|
||||
|
|
|
Cars. Everybody understands how to use them but few understand how they work. So it's a great metaphor when I need to explain a componentized system with an interface. And almost anything can be described in car terms. For example, got a coworker who doesn't write unit tests? You've got a mechanic who doesn't start the engine after changing the oil. Need to explain why putting that button on the screen will take 3 days? Tell them that you need to disassemble the dashboard and install a fuse panel. When they tell you don't worry about the fuse panel, ask if they'd drive their car around with a nail where a fuse belongs. Finally, Charles Petzold is always very good at metaphors. I liked his Paul Revere story in Code. |
||||
|
|
|
"is a" vs. "has a" |
|||||||||||
|
|
To me, the most helpful metaphor was one you don't hear much about - information theory. I was first exposed to this when I heard Richard Greenblatt explaining how the MacLisp system handled encoding of datatypes, such as cell pointers, atoms, integers, strings, floating point numbers, and NIL. It's not about physical representation, it's about how choices are encoded and communicated over channels. The two main branches of information theory are 1) probabilistic (Shannon), and 2) algorithmic (Kolmogorov). They both provide different and very useful insights. If you think about software that way, as a way of encoding information, and dealing with noise (errors), then you have a lot more choices and can make informed selections and tradeoffs. |
|||||||||||
|
|
Define the word "chair". I like to use this as a starting point to explaining the concept of abstraction. First, it can be used to make clear that, while all chairs share some common features (whatever those may be), there is no chair, that is just a chair (each specific chair is different from all other chairs in some respect). Also, it shows how difficult it can be to make concepts in your head explicit. |
||||
|
When I taught undergraduates Java, I have found taxonomy (plant kingdom, animal kingdom, through mammals, to species) to be useful.
You can stretch that metaphor a very long way. For design patterns, it's usually easier to pick human situations, as the "design" part of it is key -- not just "what's it mean" but "why might I decide to use that pattern"
So it's not that there's a key metaphor for design patterns, but it's not hard to spot real-life equivalents of them. |
||||
|
|
|
It is more profound and helpful than polymorphism, inheritance, encapsulation and all others. OO design patterns can guide beginners to avoid worst coding, but only succinctness can lead one to perfection. |
||||
|
|
|
The most useful metaphor for me has been thinking of objects not as things that can be manipulated, but as people that talk to other people or send messages to other people. |
||||
|
|
|
I really like the "encapsulate what varies" mantra of the Head First Design Patterns book, and specifically, the use of the programmable remote control metaphor for the Command pattern. The Client (lazy couch potato dad) creates the Command object (programs the remote control). Then the Client (dad) can use the Invoker (press the remote button) to invoke commands against the Receiver (the thing the remote control is controlling). |
||||
|
|
Electronics. As someone who started out in electronic engineering and moved into software, I find that there are many useful analogies that can be made between electronic design and software design. (Components, circuits, interfaces, networks, etc.) It also goes beyond design. Electronics is a more mature engineering discipline, and a lot of the processes and techniques that one uses in electronics can also be applied to software engineering. |
||||
|
|
Sorry I’m joining the thread late. I just stumbled upon it. I developed a Design Pattern course at my company, and I used a lot of metaphors. Inheritance –
Encapsulation – The motor of a car is encapsulated from the driver. It is literally “under the hood.” I operate my car via the key/ignition, steering wheel, gas and brake petals. I don’t have to know nor worry about the specifics of an internal combustion engine (or hybrid engine for that matter). Polymorphism – Back to animals. Every animal needs to eat, but they all eat in different ways specific to themselves. Some are herbivores, carnivores or omnivores. Some are filter feeders. They all eat, but the eating technique is unique to many of them. Interface (not in your list) – I’m adding it, because Interface is an important OO topic, especially since it’s a specific concept in Java and maybe other languages as well. My accountant prepares taxes. H&R Block employees prepare taxes. Some lawyers prepare taxes. “Tax Preparer” could be an interface. It defines what is performed, but it has not part in declaring how it is performed. Accountants, H&R Block employees and lawyers can all declare themselves as tax preparers, and they may all three use completely different techniques to prepare taxes. Delegation (not on your list) – Delegation (AKA collaboration) appears repeatedly in the GoF book. Let’s go back to tax preparation. An accountant may declare himself as a tax preparer, but he may delegate the work to a junior member, who may delegate it to TurboTax. Design Patterns – They are techniques that work will in OO environments. I compare them to data structures, which are techniques that work well in procedural environments. Just like data structures are mostly based upon pointer manipulation, design patterns are based upon inheritance, encapsulation, polymorphism, etc. It’s like Tex-Mex food. There are only a few basic ingredients: tortilla, beans, meat and cheese. Wrap it, it’s a burrito. Bake it, enchilada, Grill it, quesadilla, etc. Design Patterns are almost like recipes. Once you master the basic OO skills, you can learn to combine them using the design pattern “recipes”. Once you master the design pattern, you can begin to experiment with it, just as a chef would. A cook is someone who knows how to create a dish. A chef is someone who knows why the dish works. Learning design patterns can help move you from software cook to software chef. I used a metaphor for each pattern I presented. Here are a few examples:
|
||||
|
|
|
Learn from the lessons from GoF Design Patterns: Program to an 'interface', not an 'implementation'. Favor 'object composition' over 'class inheritance'. And test first. |
||||
|
|
|
Typically I try not to think too hard about metaphors; the problem itself is what I'm concerned with. If an object is in the problem space, then I write it out as part of the solution. When doing inheritance-y things, I inherit due to a shared and abstractable quality inherent in both of the objects that can be factored out. Helios points out that shared qualities can also be factored into a common object; the has-a relationship. My reply mentioned the is-a relationship. |
|||||||||
|
|
Scheme's Continuation-passing style it may not seem as a metaphor at first, but once you've mastered one:
|
||||
|
|
|
I would say any use of metaphors was counter-productive for me to understand and learn object oriented design as I know it now correctly. It may be helpful to explain something technical to a layperson but when you have trouble explaining it to a peer without metaphors chances are you don't understand it thoroughly. |
||||
|
|