Friday, January 29, 2010

Abstract != Vague

I've got a bone to pick, so I'll do it here. This is a problem of mine that I have with both developers(architects) and with analysts(customers).

Context: This rant applies to models/designs/architectures of a problem or solution domain. It doesn't apply to the actual coding of a solution (much).

First, some definitions:
  • Abstract: something that concentrates in itself the essential qualities of anything more extensive or more general, or of several things; essence.
  • Concrete: pertaining to or concerned with realities or actual instances rather than abstractions
  • Precise: definite or exact in statement
  • Vague: not clearly or explicitly stated or expressed

Here's the picture:
What does this mean?

Analysts tend towards Abstract-Vague. "Let's not get bogged down with details right now."
Developers tend towards Concrete-Precise. "I need all of the table properties fields."

Fortunately, almost no one tends to Vague-Concrete. Phew.

Un-fortunately, few move towards the most valuable region: Abstract-Precision. That's the most valuable because it offers the least noise (Concrete details) and the most information (Precision).

Here's an example. Squares are types, circles are interactions.
Notice that "Money" isn't concretely defined here. It could be a BigDecimal, double, or Smalltalk Number. Also, that Post Condition is much more precise than a lot requirements documents usually specify.

Ah, I feel better.

Here's my rule of thumb for achieving more precision:
Add elements to your model only in order to exactly say what your audience thinks is really important.
In the example above the balance, amount, and cash properties are only present because a Withdraw requires them to precisely describe what needs to be done.

Copyright references: Skull and Crossbones, Dollars

1 comment:

Sharon said...

I like how you put this. I've been writing a lot about abstraction (it is, in fact, really key to learning to cook), and been concerned that it sounds like I'm endorsing vagueness. I knew I wasn't, but I wasn't confident about how it sounded. You've done a nice job summarizing the distinction, so now I'll know what to say (and whom to link to) when I need to hit that point. Nice clarification.