Can you explain Liskov Substitution Principle (The 'L' of SOLID) with a good C# example covering all aspects of the principle in a simplified way? -If it is really possible.
Thanks!
|
Can you explain Liskov Substitution Principle (The 'L' of SOLID) with a good C# example covering all aspects of the principle in a simplified way? -If it is really possible. Thanks!
| ||||
|
feedback
|
|
LSP says that you should always be able to use a base class or interface instead of the actual implementation and still get the expected result. If you can't, your breaking LSP. An example:
And the calling code
As you can see, there are two examples of ducks. One regular duck and one electric duck. The electric duck can only swim if it's turned on. This breaks the LSP principle since it must be turned on to be able to swim (the You can of course solve it by doing something like this
But that would break Open/Closed principle and has to be implemented everywhere (and thefore still generate instable code). The proper solution would be to automatically turn on the duck in the Update Someone added a comment and removed it. It had a valid point that I'd like to address: The solution with turning on the duck inside the Update 2 Rephrased some parts to make it more clear. | |||||||||||||
feedback
|
|
How about this? | |||
|
feedback
|
| |||||
feedback
|
|
Great article, thanks! My question, can i do next inheritance, that, in my opinion, not violates LSP?
usage:
Thanks | ||||
|
feedback
|