تقييمات الطلاب
( 5 من 5 )
١ تقييمات
فيديو شرح Liskov Substitution Principle ضمن كورس SOLID Principles شرح قناة kudvenkat، الفديو رقم 5 مجانى معتمد اونلاين
In this video we will learn
1. Liskov Substitution Principle
2. Implementation guidelines of Liskov Substitution Principle
3. And will implement this Principle with a simple example
Healthy diet is very important for both body and mind. We want to inspire you to cook and eat healthy. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking.
https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation1
In the first video of SOLID Introduction we have understood that L in the SOLID is acronym for Liskov Substitution Principle which is also known as LSP.
Definition : Substitutability is a principle in object-oriented programming and it states that, in a computer program, if S is a Subtype of T, then objects of type T may be replaced with objects of type S
1. Which means, Derived types must be completely substitutable for their base types
2. More formally, the Liskov substitution principle (LSP) is a particular definition of a subtyping relation, called (strong) behavioral subtyping
3. This Principle is introduced by Barbara Liskov in 1987 during her conference address on Data abstraction and hierarchy
4. This principle is just an extension of the Open Close Principle
The examples used in this session are related to the open closed principle. Hence we request you to watch the Open Closed Principle tutorial before proceeding.
Implementation guidelines : In the process of development we should ensure that
1. No new exceptions can be thrown by the subtype unless they are part of the existing exception hierarchy.
2. We should also ensure that Clients should not know which specific subtype they are calling, nor should they need to know that. The client should behave the same regardless of the subtype instance that it is given.
3. And last but not the least, New derived classes just extend without replacing the functionality of old classes
In the previous session as part of the Open closed Principle implementation we have created different employee classes to calculate bonus of the employee. From the employee perspective we have implemented the Open closed principle.
Now if you take a look at the main program, we have created Employee objects which consists of both permanent and contract employee.
If you take a closer look at this program the Derived types which are Permanent and TemporaryEmployee have completely substituted the base type employee class.
So, based on the Liskov substitution principle we have achieved LSP by ensuring that Derived types are completely substitutable for their base types.
Also, notice the main program, without using the subtypes we are calculating the bonus of the employee from the base class type itself. Hence, we are satisfying the Liskov substitution principle.
That means along with the Open Closed Principle we have partially implemented the LSP.
Also, I can state that this implementation is not adhering to guide lines of Liskov principle
To understand why it’s not adhering to the Liskov Principle, Let’s assume that we need to have a Contract Employee as one of the employee category. A point to note here is a contract employee is not eligible for any bonus calculation and post implementing the Employee class we end up throwing exception at the runtime in the caclculatebonus() method. This violates the Liskov Substitution Principle.
Hence, Please follow the below code which addresses this issue. Also, we recommend to watch our video tutorials for complete guidance and understanding of the code.
The code is available on our blog at the following link.
http://csharp-video-tutorials.blogspot.com/2018/01/liskov-substitution-principle.html
Text version of the video
http://csharp-video-tutorials.blogspot.com/2018/01/liskov-substitution-principle.html
Slides
http://csharp-video-tutorials.blogspot.com/2018/01/liskov-substitution-principle-slides.html
SOLID Design Principles Tutorial
https://www.youtube.com/watch?vHLFbeC78YlU&listPL6n9fhu94yhXjG1w2blMXUzyDrZ_eyOme
SOLID Design Principles Text Articles & Slides
http://csharp-video-tutorials.blogspot.com/2018/01/solid-design-principles.html
All Dot Net and SQL Server Tutorials in English
https://www.youtube.com/user/kudvenkat/playlists?view1&sortdd
All Dot Net and SQL Server Tutorials in Arabic
https://www.youtube.com/c/KudvenkatArabic/playlists