Coding Horror

programming and human factors

The Delusion of Reuse and the Rule of Three

I'm currently reading Facts and Fallacies of Software Engineering by Robert Glass. It's definitely a worthwhile book, although I do have two criticisms:

  1. Someone really, really needs to buy Robert Glass a copy of Strunk and White's Elements of Style. Or at least get him a decent editor. There's some great information here, but his overly florid writing style gets in the way.
  2. Quite a few of the 55 facts and fallacies presented here will be old news to anyone familiar with the most popular books on the reading list. For example, "Adding people to a late project makes it later." That's well understood, and Glass doesn't cover enough new ground with these chestnuts to justify the two or three pages each one adds to the book.

That said, I am really enjoying the parts of the book that cover the more obscure topics. For example, the Rule of Three:

There are two "Rules of Three" in reuse: (a) It is three times as difficult to build reusable components as single use components, and (b) a reusable component should be tried out in three different applications before it will be sufficiently general to accept into a reuse library.

I have found this to be universally true in the projects I've worked on. If anything, I think this rule underestimates the cost: I believe writing a truly reusable class is an order of magnitude harder than writing a single use class. Sometimes the right thing to do is resist the urge to write "general purpose" solutions. Sure, it's better in the long run to have a widget library you can use forever, but that doesn't get your current project done any faster. Furthermore, how confident are you that the so-called "general purpose" solution you built will actually work for these … unknown future projects? Have you tried it?

You can't know if you have a strong case for reuse unless you've tried – and possibly failed – to use that same bit of code on at least three different projects, with three different audiences.

Until you've invested the additional effort to implement that "reusable" code with different developers and different problem domains, all you have is the delusion of reuse. Be careful, because I've seen too many developers fall into this trap. Myself included.

Written by Jeff Atwood

Indoor enthusiast. Co-founder of Stack Overflow and Discourse. Disclaimer: I have no idea what I'm talking about. Find me here: https://infosec.exchange/@codinghorror