1.1 Liskov Substitution Principle (LSP) with Solution in Java - SOLID Principles of Low Level Design

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ม.ค. 2025

ความคิดเห็น • 140

  • @ankitgoyal8556
    @ankitgoyal8556 9 หลายเดือนก่อน +22

    TH-cam and people like you have made life easier, thankuu.

  • @Ricky-jr7io
    @Ricky-jr7io ปีที่แล้ว +12

    An excellent explanation of Liskov's Substitution principle. I work primarily with python and javascript, and your explanation really illustrates well why typescript and type hinting in python are necessary to avoid errors.
    Thank you very much.

  • @anuraggupta6277
    @anuraggupta6277 ปีที่แล้ว +25

    One suggestion - hasEngine could have values - true and false. So instead of returning null, we could have returned false, and it would not break.
    For this example, we could have taken something like engineType instead of engine. In that case, cycle will have to return null.
    PS - I am new to these topics. Please correct me if i am wrong 🙂

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว +10

      :) yes, i think you got the point.
      Enginetype can be better functionality.
      but hasEngine is returning Boolean class type, so null is one of the valid return type here.

    • @janpost8598
      @janpost8598 ปีที่แล้ว +1

      I was thinking the same thing. But then a car who should have an engine could have no (hasEngine returns false) engine. So it perfectly illustrates why a bicycle returns a null and shouldn't have the hasEngine method in the first place.

    • @12345bcpraful
      @12345bcpraful ปีที่แล้ว +1

      @anuragupta I have same question in my mind also.
      Yes if we use engineType functionality it will be better instead of hasEngine.
      Thank you shreyansh sir.

  • @nitigya
    @nitigya ปีที่แล้ว +7

    This brings the point when to ditch Inheritance over Composition. Like how Abstraction/Inheritance brings coupling along with itself. Though, both Inheritance and Composition will have it's own pros/cons. Amazing playlist!

  • @rajugoud6465
    @rajugoud6465 7 หลายเดือนก่อน +2

    This is the perfect Explanation of this principle, i watched this principle in paid courses, but this is the perfect explanation

  • @CanadaKeBhai
    @CanadaKeBhai ปีที่แล้ว +9

    Best example of Liskov's substitution principle

  • @ashishgoswami6303
    @ashishgoswami6303 ปีที่แล้ว +2

    Awesome work ! I have been working for a while but you cleared concepts with examples!

  • @SushilChauhan-z1q
    @SushilChauhan-z1q 3 หลายเดือนก่อน +1

    No one explained like you this solid concept..thanks

  • @dpynsnyl
    @dpynsnyl ปีที่แล้ว +4

    very nice explanation!
    can you also add similar video explanation for all the other principles? This is a rock solid video, I don't think I will forget this easily.

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว +1

      Pls check the first video of this playlist

  • @SuyashD-cd9wr
    @SuyashD-cd9wr 7 หลายเดือนก่อน +1

    Beautifully explained !!! keep up the good work !!!

  • @rohitvathumilli8176
    @rohitvathumilli8176 ปีที่แล้ว +3

    Hi Shrayansh,
    1) The vehicle class, does it follow a single responsibility principle.
    2) What if I return false instead of return null for the bicycle class, does it follow LSP

    • @paulputin
      @paulputin ปีที่แล้ว +2

      I assume that the method hasEngine() should be replaced with the method startEngine(). Then this tutorial will make sense.

    • @rohitvathumilli8176
      @rohitvathumilli8176 ปีที่แล้ว

      Thanks , can I know whether it follows single responsibility priciple

  • @saiakhil9206
    @saiakhil9206 ปีที่แล้ว +3

    I think there is a slight conceptual mistake in the start of the video.
    In the video, you mentioned that for a parent p, and child classes c1, c2, and c3, LSP says that parent *p = new c1should not break the behavior when c1 is replaced by c2, c1 is replaced by c3.
    However, my understanding is that for the same scenario, in a code, if you use c1_object.setSomething() or c2_object.setSomething() and if you have a parent object, the code should retain its behavior if you change c1_object with p1_object.
    Please correct my understanding if it's wrong.

    • @patel5532
      @patel5532 ปีที่แล้ว

      Bro by the way, Would like to study together LLD, HLD and DSA for interview? I'm also preparing for the google.

    • @saiakhil9206
      @saiakhil9206 ปีที่แล้ว

      Sure man@@patel5532

    • @AshishGusain17
      @AshishGusain17 ปีที่แล้ว

      It should be reverse......the code should retain its behaviour if you change p1_object with c1_object

  • @pranaypaul6361
    @pranaypaul6361 5 หลายเดือนก่อน +1

    So beautifully explained!

  • @aishwaryas8283
    @aishwaryas8283 6 หลายเดือนก่อน +1

    The solution proposed seems to be similar to Interface Segregation principle with the only difference being we use classes here instead of interfaces for segregation. Thanks for the explanation.

  • @pavanls2436
    @pavanls2436 ปีที่แล้ว

    One more thing that comes into mind is separation of behaviours. We can set up behaviors as interfaces and select class can implement that interface while the rest need not have to. (Learnt this through an example in Head First Design Patterns) Shreyansh Jain, correct me if I am wrong. With this, we don't have to create more classes.

  • @gurupreetsingh8347
    @gurupreetsingh8347 ปีที่แล้ว +8

    In side bicycle u could return false instead of null ... Why returning null .. returning false can solve the problem..

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว +5

      Hi Gurupreet, i want to show the example.
      If Return type is Boolean, then returning null is also a valid.
      What i wanted to showcase that these kind of scenarios Liskov principles try to avoid.
      :)

    • @gurupreetsingh8347
      @gurupreetsingh8347 ปีที่แล้ว +1

      @@ConceptandCoding ok thanks

    • @beerboii2435
      @beerboii2435 ปีที่แล้ว +15

      In this case, I feel a better example would be to replace hasEngine with engineType in Vehicle class. For the case of bicycle, It would be logical to return null. So it would be better to understand why it is wrong to use that way.

    • @utsavkunal5221
      @utsavkunal5221 11 หลายเดือนก่อน

      @@gurupreetsingh8347Just because implementation fits for that method doesn’t mean, we can have method. In Bicycle has per its behaviour there is not question of having engine, also if it is electricVehicle suppose, there you can return false.

    • @divijsharma5610
      @divijsharma5610 11 หลายเดือนก่อน +2

      Instead you could have turnOnEngine like in SOLID video , Cycle cannot turn on engine.

  • @pradipbedre653
    @pradipbedre653 ปีที่แล้ว

    3:41 but why we are returning null we can return the false as well right.

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว +2

      Boolean is a wrapper class and null is also a valid value.
      So for example purpose i sent null.

  • @shubhammanecr7
    @shubhammanecr7 ปีที่แล้ว +1

    Amazing... thank you for such clear explanation!

  • @dhirajshetty4317
    @dhirajshetty4317 5 หลายเดือนก่อน +1

    Great explanation man!!

  • @rajeshdas2295
    @rajeshdas2295 ปีที่แล้ว +1

    Very Nice Bhaiya Got it properly!!!

  • @nowitspk
    @nowitspk หลายเดือนก่อน +1

    Very well explained thanks

  • @arashrouhani-kalleh1797
    @arashrouhani-kalleh1797 ปีที่แล้ว +2

    Amazing solution!

  • @DhanyaGannavarapu
    @DhanyaGannavarapu ปีที่แล้ว +1

    Simple and clear Explanation

  • @shubhamagarwal1434
    @shubhamagarwal1434 7 หลายเดือนก่อน +1

    Very well explained...awsome!!!

  • @songsbooth1329
    @songsbooth1329 10 หลายเดือนก่อน +1

    Superb explanation.👏👏

  • @shawkiahmed3586
    @shawkiahmed3586 5 หลายเดือนก่อน

    Good example to understand. thanks for your efforts

  • @codinghubfree
    @codinghubfree 9 หลายเดือนก่อน +1

    since bicycle has not engine what if you return false since its return type is boolean. will it meet Liskov principle?

    • @ConceptandCoding
      @ConceptandCoding  9 หลายเดือนก่อน

      i think i should name method little different which will make more sense.
      but in this example, return type is Boolean, so its a valid that NULL can be returned from this method, if it is returned, then it might break the existing code. That breaks Liskov principle

  • @madmaxgaming5864
    @madmaxgaming5864 2 หลายเดือนก่อน +1

    great explanation.......

  • @shashankcool
    @shashankcool ปีที่แล้ว +1

    Nicely explained with help of example 😊

  • @himanshukashyap1654
    @himanshukashyap1654 ปีที่แล้ว +1

    Can we get the slides that you are sharing in your videos?

  • @RealKaranVerse
    @RealKaranVerse 3 หลายเดือนก่อน

    As hasEngine method return either true if engine is available and false if not available then in case of BiCycle you are returning null, shouldn't it be returning "false"?

  • @asramogal688
    @asramogal688 ปีที่แล้ว +1

    Hi , Even after all of the changes , in the 2nd case where Bicycle cant access hasEngine(),It still throws error right,How could we prevent this ?

  • @JustForFunYTG
    @JustForFunYTG ปีที่แล้ว +2

    Why bikecycle returned NULL instead of false for hasEngines()?

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว +1

      I wanted to give an example, since method return type is Boolean (object), Null is a valid return value.

    • @learner5358
      @learner5358 ปีที่แล้ว

      Will the problem arise if we have primitive boolean instead of Wrapper object Boolean and return false ?
      If we return false then it will follow the Liskov's substitution principle right ?

  • @techlead_ashu
    @techlead_ashu 4 หลายเดือนก่อน

    very good. thank you.👏👏👏👏

  • @deepakmathur4218
    @deepakmathur4218 3 หลายเดือนก่อน

    Hi In your BiCycle method it is of type boolean and you are returning null ?

  • @CodeMode9313
    @CodeMode9313 5 หลายเดือนก่อน +1

    thats a great explanation

  • @OffRoadEngineerVlogs
    @OffRoadEngineerVlogs ปีที่แล้ว

    Nice information brother 😊 keep sharing

  • @keshavmittal2844
    @keshavmittal2844 ปีที่แล้ว +1

    Very well explained

  • @paritoshdadhich2954
    @paritoshdadhich2954 ปีที่แล้ว

    Thank you so much for the wonderful explanations

  • @stepswithvishnu2924
    @stepswithvishnu2924 ปีที่แล้ว

    You could have return false in place of null in case of Bicycle's hasEngine() method?

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว

      I could, but since the return type of method is 'Boolean' and null can also be returned, so that's a possible usecase.
      But yes I could have used some better method name.

  • @tarunkundhiya5196
    @tarunkundhiya5196 ปีที่แล้ว +1

    Can we not return false for hasEngine in Bicycle? May be different example can be used getEngine() to show the problem. Nice explanation btw. I searched the internet most of them gives complex example without clearing much. PS: Instead of EngineVehicle we can rename MotorizedVehicle. just a thought.

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว

      yes, thats the example i wanted to showcase, but since its Boolean, null is the valid return value

    • @varunaggarwal7126
      @varunaggarwal7126 ปีที่แล้ว +1

      I think, Returning null is typically used when dealing with reference types, where a variable can hold a reference to an object or have no reference (null). However, for Boolean values, the options are limited to true or false to indicate the presence or absence of a certain condition. Please correct me!

  • @shenth27
    @shenth27 7 หลายเดือนก่อน

    I dont understand why you need to return null from hasEngine method in the Bicycle class. Shouldn't it just return false?

    • @ConceptandCoding
      @ConceptandCoding  7 หลายเดือนก่อน

      return type is Boolean it can return null,
      but i agree method name i can take something else to explain it better

  • @learnwithme7750
    @learnwithme7750 ปีที่แล้ว

    One question i.e I think we used multi-level inheritance to make sure that we follow strategy design pattern practises? please correct me if I am wrong.

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว

      sorry i could not understand the relation between multi-level and strategy pattern, could you pls elaborate.

    • @learnwithme7750
      @learnwithme7750 ปีที่แล้ว

      @@ConceptandCoding sorry i think i got it wrong, thanks for addressing

  • @ShubhamKumar-by4mu
    @ShubhamKumar-by4mu 2 หลายเดือนก่อน

    I have joined via membership but still can’t get the access to the few videos. Somebody help me

    • @ConceptandCoding
      @ConceptandCoding  2 หลายเดือนก่อน

      Could you pls check if you have the right membership level

  • @arashrouhani-kalleh1797
    @arashrouhani-kalleh1797 ปีที่แล้ว +1

    Fantastic 😍!

  • @charuagarwal8405
    @charuagarwal8405 ปีที่แล้ว +2

    Thanks for this video!

  • @mdrizwanahmed6746
    @mdrizwanahmed6746 10 หลายเดือนก่อน +1

    great explanation

  • @vaibhavkhairnar7313
    @vaibhavkhairnar7313 ปีที่แล้ว +1

    very nice explanation

  • @renudeshmukh4608
    @renudeshmukh4608 ปีที่แล้ว +1

    Best Explanation

  • @sachinphogat8822
    @sachinphogat8822 6 หลายเดือนก่อน

    why to make different classes implementing interfaces. Why cant we have interface extending another inteface?

  • @iamkdblue
    @iamkdblue 11 หลายเดือนก่อน +1

    How do we solve above problem?
    Last Mai toh wapas conflict ho Gaya !
    Compiler error hai , solve kaise hoga wo ?
    Thanks for video aag laga diya hai 🔥

  • @himanshushekhar2929
    @himanshushekhar2929 4 หลายเดือนก่อน +1

    Shrayansh Sir, please share the slides link.

  • @tamonashchakrabarti7909
    @tamonashchakrabarti7909 ปีที่แล้ว

    Very good explanation indeed

  • @charuagarwal8405
    @charuagarwal8405 ปีที่แล้ว +1

    Very informative video!

  • @nikhilgupta2569
    @nikhilgupta2569 ปีที่แล้ว +1

    Good explanation but probably the example could have been a little better for instance Bicycle's hasEngine method could simply return false in this case no need to return null. So this use-case of having Bicycle extending vehicle is not basically causing any trouble :)

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว

      Return type is Boolean, so null is a valid return type.
      Yes i think much better example can be used

  • @shinchannohara1097
    @shinchannohara1097 ปีที่แล้ว +1

    Why a boolean method returning NULL, Bicycle could have returned False instead

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว +2

      I wanted to show an example.
      Since it's a wrapper object, Null is a valid return type

    • @shinchannohara1097
      @shinchannohara1097 ปีที่แล้ว

      @@ConceptandCoding understood

  • @vallabhchugh2075
    @vallabhchugh2075 ปีที่แล้ว

    Great teaching. Do you have notes also ? that u can share

  • @DhruvSharma-p7k
    @DhruvSharma-p7k 2 หลายเดือนก่อน

    can we make vehcile as interface ?

  • @luisgonzalez8877
    @luisgonzalez8877 ปีที่แล้ว

    So, solution for LSP is to use ISP? In other words, use a different principal ?

  • @Harsh-Choudhary451
    @Harsh-Choudhary451 5 หลายเดือนก่อน

    Where can i get lld notes

  • @doodo_1
    @doodo_1 ปีที่แล้ว

    can u give slides you are using in videos for reference

  • @novascotia2015
    @novascotia2015 ปีที่แล้ว

    sir is this for freshers or for sed1, or sde 2. now i am working on my dsa.

  • @rohanyadav7327
    @rohanyadav7327 11 หลายเดือนก่อน +1

    Isn't this looking like similar to I in Solid - interface segregation
    You are segregating the interfaces based on their functionalities

  • @akashchourasiya72
    @akashchourasiya72 ปีที่แล้ว

    isn't also interface segregation principle?

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว

      Similar, but intention is different, it tries to solve problem from code which uses interface.
      Interface segregation says we should not force child class to implement method which it font require.
      But Liskov days, if we swap with other child class, code should not break

  • @Animesh-v6r
    @Animesh-v6r 8 หลายเดือนก่อน

    What is the difference between L and I then.
    Does this mean I is the solution of L??

    • @ConceptandCoding
      @ConceptandCoding  8 หลายเดือนก่อน +1

      While they address different concerns, Interface Segregation Principle (I) can be considered a solution to avoid violating Liskov Substitution Principle (L) by designing more cohesive interfaces.

    • @Animesh-v6r
      @Animesh-v6r 8 หลายเดือนก่อน

      @@ConceptandCoding Got it, Thanks😄

  • @rohitkumarsah77
    @rohitkumarsah77 10 หลายเดือนก่อน

    why the bicycle is not returning false instead of null...this will not break the code.

    • @ConceptandCoding
      @ConceptandCoding  10 หลายเดือนก่อน

      return type of the method is Boolean, so returning Null is a valid return type.i think method can be improved a bit

  • @AbhishekKumar-td5zu
    @AbhishekKumar-td5zu 15 วันที่ผ่านมา +1

    amazing

  • @samithanandasena6642
    @samithanandasena6642 8 หลายเดือนก่อน

    good explanation

  • @MohdImran-uq5iv
    @MohdImran-uq5iv 5 หลายเดือนก่อน +1

    bhai❣

  • @AmanDubey-b3q
    @AmanDubey-b3q ปีที่แล้ว

    Did you provide code and this file?

  • @chandrikasaha6301
    @chandrikasaha6301 ปีที่แล้ว

    sir if you could share a git link. I am trying these in python

  • @esportathlete4703
    @esportathlete4703 4 หลายเดือนก่อน +8

    This is not really a satisfactory example.

    • @Dineshkumar-gr8nj
      @Dineshkumar-gr8nj 3 หลายเดือนก่อน +2

      Agree with you. Generally the example should be in such a way that substitution doesn't change/break the existing implementation. Not introduce exception voluntarily.

  • @snowleopard3925
    @snowleopard3925 10 หลายเดือนก่อน

    bro can I get the pdf of these notes?

  • @Aman-ln9dx
    @Aman-ln9dx ปีที่แล้ว

    If possible can u please provide notes ?

  • @linuxadmin8027
    @linuxadmin8027 ปีที่แล้ว

    Thank you❤

  • @sreelekshmiraj6424
    @sreelekshmiraj6424 ปีที่แล้ว

    Could you please provide the codes or notes pdf

  • @raushansoni5383
    @raushansoni5383 4 หลายเดือนก่อน

    Combine it in one shot sir

  • @Jock3R87
    @Jock3R87 ปีที่แล้ว

    In bicycle class you are returning nil ideally it should return false.. i guess this is not the correct example

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว +1

      Return type is Boolean, null is a valid return value.

    • @Jock3R87
      @Jock3R87 ปีที่แล้ว

      @@ConceptandCoding in any of the programming language Bool is not have null value mate.. Its either True/ False otherwise the whole meaning of Bool is wasted

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว

      @@Jock3R87 welcome to Java world buddy, it's a wrapper object and null is valid value for it.
      Yes generally it make sense to return only true false but since we define the return type as Boolean object not the primitive one boolean. , Null can be passed. Hope this clarifies

  • @Aman-ln9dx
    @Aman-ln9dx ปีที่แล้ว

    Your slide

  • @AbhishekKumar-kk6qs
    @AbhishekKumar-kk6qs ปีที่แล้ว

    Hi Shreyansh, So the solution is strategy design pattern , am i right ?

    • @ConceptandCoding
      @ConceptandCoding  ปีที่แล้ว +1

      :) no Abhishek, i would say, interface segregation generally solves this

  • @ashraygupta6294
    @ashraygupta6294 27 วันที่ผ่านมา

    Will it work if I do -> System.out.println(engineVehicle.getNumberOfWheels());