vote up 7 vote down star
5

can somebody explain/name me the priciples of SOLID development ?

flag

17  
It is slower than both LIQUID and GAS development, but has a much more rigid and stable structure. – TheTXI Sep 14 at 20:01
3  
If you often add ION practices to GAS development, you should really switch to PLASMA. – Pesto Sep 14 at 20:05
1  
It is the set of principles you use after a code freeze on a project that uses LIQUID development principles. – Mike Two Sep 14 at 20:07
6  
LIQUID development? Is that the one that uses the waterfall method? – Pesto Sep 14 at 20:09
3  
@Pesto: I've always heard that LIQUID development doesn't put a big focus on memory leaks. – TheTXI Sep 14 at 20:10
show 7 more comments

5 Answers

vote up 8 vote down check

I'm a big fan of this very visual explanation.

link|flag
1  
Like that one ;) – Heiko Hatzfeld Sep 14 at 20:10
It is funny but full of pork in my opinion. – Phil Oct 19 at 18:46
vote up 10 vote down

Do you have a question to one speciffic principle?

  • SRP: Single Responsibility - One reason to exist, one reason to change

  • OCP: Open Closed Principle - Open for extension, closed for modification

  • LSP: Liskov Substitution Principle - An object should be semantically replaceable for it's base class/interface

  • ISP: Interface Segregation Principle - Don't force a client to depend on an interface it doesn't need to know about

  • DIP: Dependency Inversion Principle - Depend on abstractions, not concrete detail or implementations

link|flag
What? No reference to the source? butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod/…. – S.Lott Sep 14 at 20:12
Open-Closed Principle comes from Bertrand Meyer. – Nat Sep 14 at 20:16
LSP is of course named after Barbara Liskov. – quamrana Sep 14 at 22:01
IMHO the Open-Closed Principle is overused, most classes should simply be closed. – starblue Sep 15 at 7:09
@starblue: The problem is that most classes are not closed to modification. Programmers keep tinkering with them. It would be marvelous if most classes really were closed, and open to extension. That would fulfill OCP. More often refactoring means occasional modifications to enable closure to further modifications. – quamrana Sep 15 at 17:36
show 1 more comment
vote up 5 vote down

try this link for SOLID (and other principles)

http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod

link|flag
vote up 4 vote down

Here's some links that speaks more to this and has some samples:

http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod

http://www.lostechies.com/blogs/chad%5Fmyers/archive/2008/03/07/pablo-s-topic-of-the-month-march-solid-principles.aspx

http://www.davesquared.net/2009/01/introduction-to-solid-principles-of-oo.html

Paraphrased from links...

S - Single responsibility - This means that a class should only do one thing. A class that does this makes it easier to change and conversly one that doesn't is much harder to maintain.

O - Open for extension, closed to modification - This means you should only change a classes behaviour by using inheritance and/or composition. It also means you should be careful in how you design your classes to be resilent to change in such a way that they won't easily break code relying on it.

L - (LSP) Derived objects should be substituable with the parent and everything should work properly. - This means that when you use a subclass in place of its parent everything should work. This may seem simple but take the classic square derived from a rectangle class and what happens if you have a parent method to set the width. This is different for a rectangle and a square.

I - (Interface segratation) Interfaces should only be forced upon those who use/need them. - Keep your interfaces small and to the point to help ensure this rule. Don't create large interfaces much like creating large classes as they start to break the Single responsibility rule.

D - (Dependency Inversion Principle) Break Dependencies. - Use interfaces instead of types when possible to help break dependencies between classes.

Definitely not the best explanation but I try... :)

link|flag
vote up 1 vote down

Omu, go with Mike Two's answer. Those are great motivational posters. Some people explain Liskov Substitution Principle with circles and ellipses, squares and rectangles, but you can't put it better than this:

"If it looks like a duck, quacks like a duck, but requires batteries, then you have a wrong abstraction."

link|flag

Your Answer

Get an OpenID
or

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