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:
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.
Also, there is an ethical issue as a consultant with billing a client for time spent making something "reusable" not for your current client, but someone else. And we all know that consultants don't spend time making reusable software "just-in-case". :)
Darrell on September 21, 2004 10:19 AMWell, there's a limited amount of relatively high value reuse you can exploit in the same application. As always, the question is where to stop..
Jeff Atwood on September 21, 2004 10:22 AMThe comments to this entry are closed.
|
|
Traffic Stats |