vote up 2 vote down star
1

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

flag
11  
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 at 11:40
Too funny, teabot! – Daniel Elliott Sep 17 at 11:42
1  
@teabot: it would still be fairly easy to remember it. – Fredrik Mörk Sep 17 at 11:49
+1 nice thought provoking question – KLE Sep 17 at 12:24

2 Answers

vote up 2 vote down check

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|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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