vote up 7 vote down star
3

I have often enjoyed the use of analogies in understanding a software scenario or problem.

For example, to understand the concept of public key encryption, the 'locked mailbox' analogy or similar is often used as an aid:

An analogy for public-key encryption is that of a locked mailbox with a mail slot. The mail slot is exposed and accessible to the public; its location (the street address) is in essence the public key. Anyone knowing the street address can go to the door and drop a written message through the slot; however, only the person who possesses the key can open the mailbox and read the message.

My question is:

What analogies have you used or heard of in your career that have given you that "Eureka" moment with a complex concept?

EDIT: If you have a good one, don't just state the name, please share with the group!

flag

12 Answers

vote up 8 vote down check

For symmetric key crypto, I use the locked box analogy:

Open a box, put in the message, put a lock on the box. Anyone with the key to the lock can open the box, and read, replace, or steal the message. You can mail the box to someone - but you also have the additional problem of getting the key to the person securely.

A similar analogy can be used for key exchange:

Put a key in a box, and lock the box with your lock, that no one can open. Mail the box to Bob. Bob can't open the box, but he can put his own lock on it that you can't open, and he can mail it back to you. You take off your lock, and mail the box (locked with Bob's lock) back to Bob. He takes off his lock, and can open the box.

For classes, and this isn't the best analogy, I liken them to buckets of related information. Everything about a Giraffe. It has a name, a height, a spot pattern. It runs, eats and dies.

link|flag
Actually your second analogy is flawed and prone to a ManInTheMiddle attack, unless you can certainly tell that the lock "Bob" put on the box is really Bobs lock. Otherwise it could be an eavesdropper, intercepting the communication and read/change the message before Bob gets it. – Olaf Oct 3 '08 at 13:50
@Olaf, thats the flaw of the system. Thats why its really only safe to give your PGP key in person, for instance. At least AFAIK – d03boy Mar 24 at 3:55
@d03boy - That's where webs of trust come in. Of course, you'll only be reasonably assured that Bob is really Bob. – guns Mar 24 at 4:03
vote up 0 vote down

The HotBeverage analogy used in Head First Design Patterns, really helped me understand algorithm encapsulation (template method).

Basicly all beverages are made the same way.

  PrepareRecipe()
  {
      BoilWater();
      Brew();
      PourInCup();
      AddCondiments();
  }

The above Template Method defines the steps of an algorithm and allows subclasses to provide their own implementation for one or more steps.

link|flag
Any chance you could share? – Galwegian Oct 3 '08 at 13:36
vote up 0 vote down

The mammals hierarchy (dogs, cats, humans, etc) to teach inheritance and implementation.

link|flag
1  
The mammals hierarchy is actually not very suitable for OO inheritance, since it is based not on behaviour but on properties. – Rik Oct 3 '08 at 13:54
+1 Rik - mammals hierarchy is a trap! – Tom Mar 24 at 4:09
vote up 2 vote down

Interfaces: if it looks like a duck and it quacks like a duck, it must be a duck.

link|flag
1  
Although I wish this were entirely true for interfaces, you actually defined duck typing: en.wikipedia.org/wiki/Duck_typing – Dinah Mar 24 at 5:02
vote up 2 vote down

While not related to a specific software scenario, in The Mythical Man-Month, Fred Brookes expounds the idea of changing the traditional software development analogy of building software into one of 'growing' software.

His idea in this is to recognise that software engineering is, fundamentally, not building a thing as in a standard engineering discipline, but growing a software product in an iterative, organic fashion.

While he first proposed this idea in the mid-60's, when I first read it I realised both how true this is and how much we still - often subconsciously - consider software engineering in the same way as traditional engineering despite its many differences.

This 40+ year-old idea seems particularly relevant today with the increasing prevalence of agile methodolgies, and I'm amazed at the continued relevance of Brookes's ideas.

link|flag
vote up 3 vote down

I liked the Object Thinking analogy of thinking of an object as a person with responsibilities instead of just a datastructure with some methods.

link|flag
vote up 1 vote down

I really like the garden analogy. Code is a like a garden, it needs to be organize and maintain and if you don't do it then it will become an unmaintainable mess.

link|flag
vote up 0 vote down

IMHO, analogies are ok only for explaining, not for understanding and never for planning.

To make any kind of choice, you have to think in the real terms of the problem; any 'layering' between it and your mental model, and you'll be losing some insights, or fail to recognise real limitations.

If you're thinking in terms of analogies, you don't really grok the issues.

link|flag
vote up -1 vote down

What analogies have you used or heard of in your career that have given you that "Eureka" moment with a complex concept?

Can't think of one really, but comparing a computer virus with a ...virus is pretty explanatory!

link|flag
vote up 0 vote down

One which I found quite good was from Jeff's recent post where he references an analogy/metaphor on technical debt attributed to Ward Cunningham.

Very useful in explaining to the layman the benefits of taking extra time on the correct technical solution up front.

link|flag
Actually, Jeff attributes it to Ward Cunningham. – guns Mar 24 at 3:54
Point taken, thanks @guns, edited answer. – MadMurf Mar 24 at 4:32
vote up 0 vote down

When teaching someone about pointers, I use the analogy of the URL and the web page. I know it's another technology and most of these analogies aren't, but it's one that everyone is familiar with. If you tell someone that the pointer is like the URL and the thing pointed to is like a web page, it becomes a lot easier to comprehend what the difference is.

-Steve

link|flag
1  
Some ppl don't even understand the URL concept... They only think it's a google search field :-( – Steve Schnepp May 6 at 7:54
I hope you aren't trying to teach those people pointers. – Steve Rowe May 6 at 20:37
vote up 0 vote down

This isn't something that gave me a eureka moment, but it is good for explaining to other people.

DNS is a telephone book. If you know someone's name, you can look up their phone number, and then you use their phone number to contact them. If you know their phone number, it's possible to do a "reverse" lookup to find out their name, but that doesn't always work.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.