up vote 2 down vote favorite
1
share [g+] share [fb]

Although not a pure OOD principle - should DRY also be included when thinking about SOLID principles? If not - why not?

link|improve this question
14  
An aside: adding an extra 'D' to SOLID yields only one candidate acronym that is also an English word. This in itself could be a good reason to keep DRY out of SOLID. – teabot Sep 17 '09 at 11:40
Too funny, teabot! – Daniel Elliott Sep 17 '09 at 11:42
1  
@teabot: it would still be fairly easy to remember it. – Fredrik Mörk Sep 17 '09 at 11:49
+1 nice thought provoking question – KLE Sep 17 '09 at 12:24
@teabot It's probably because I'm horrible at Scrabble but I cannot come up with a word with SOLID + D. – Davy8 Oct 17 '10 at 15:12
show 1 more comment
feedback

3 Answers

up vote 3 down vote accepted

It's a bit like asking why you shouldn't add a monkey-wrench to a basket of apples: they're not really the same thing.

SOLID is a set of principles that specifically address object-oriented design.

DRY is, I'd say, somewhat orthogonal to those - it's a programming principle that can apply to anything you write.

(Having said that, the acronym is almost too good to pass up on)

link|improve this answer
feedback

I think "DRY" is probably not specific enough to make it into SOLID. "DRY" might be an underlying principle of the other principles, and it applies to any kind of development, not just object-oriented development, like SOLID does.

link|improve this answer
feedback

SOLID embraces DRY. If you ahdhere to the SOLID principles you are almost automatically DRY.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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