2. Strategy Design Pattern explanation | LLD System Design #1 | Design pattern explanation in Java

Поделиться
HTML-код
  • Опубликовано: 6 сен 2024
  • Hi, in this video we have covered #strategy #designPattern out of many design pattern which is asked in Low level system design interview.
    ➡️ Become a Member: / @conceptandcoding

Комментарии • 289

  • @tastaslim
    @tastaslim Год назад +70

    Thank you for this tutorial. Just to add, The fundamental of every design pattern is to separate out what changes over period of time from what remains constant. As you see in Strategy pattern, we are trying to separate out dependency of drive from the main class as much as possible by making various strategies to inject it dynamically based on client requirement so that in future if new requirement for drive comes, there will be minimal/no changes in existing code(Open closed Principle).

    • @niwanshumaheshwari4534
      @niwanshumaheshwari4534 Год назад +2

      Favour composition over inheritance.
      Separate what stays the same from what changes.
      As we are using a new operator, it's a program to an implementation not to an interface.
      We can use the factory pattern here.
      Right?

    • @farukhmahammad9374
      @farukhmahammad9374 Год назад

      @@niwanshumaheshwari4534 using new operator doesn't mean we are programming to an implementation ; it's about how you're using it in relation to abstraction and interfaces. correct me if I'm wrong.

    • @tastaslim
      @tastaslim 11 месяцев назад

      @@niwanshumaheshwari4534 Also you client should be the one who should initialize the class. You can inject your classes using types in static type languages and using type hints in python

  • @swarajshelavale4830
    @swarajshelavale4830 2 месяца назад +5

    Best Explanation ever... You simplified 1 design pattern in just 15mins..Worth it Content!!

  • @noobCoder26
    @noobCoder26 2 года назад +55

    I got rejected in an interview because of the lack of knowledge of design pattern. Going to learn from you next time will make a stronger comeback . 💥💥

  • @user-og7de8ih4f
    @user-og7de8ih4f Год назад +12

    In laymen terms, In Startegy Design pattern we create an interface and it's different implementation based on strategy !! And inject appropriate startegy in client class by creating constructor or any injection of your choice

  • @adityarout1276
    @adityarout1276 Год назад +42

    If you are looking for C++ code :
    using namespace std;
    #include
    #include
    using namespace std;
    class drivestratergy{
    public:
    virtual void drive()=0;

    };
    class normalDrive : public drivestratergy{

    public:
    void drive(){
    cout

  • @ugempireninjaaaaaahatori6755
    @ugempireninjaaaaaahatori6755 3 месяца назад +4

    litreally , amazing content , from monday there will be my interviews , if i will get selected than i will defenatly return to this video and comment over this .......amazing one

  • @user-xm8bq8do4r
    @user-xm8bq8do4r 14 дней назад +1

    Legit content! Probably one of the best and simplest explanations of a Design Pattern. I was literally stuck on an LLD of a Netflix like subscription service, this video helped me find the solution. Guess what? It's Strategy Pattern!

  • @garvitsingh2593
    @garvitsingh2593 4 месяца назад +4

    this guy deserves a lot of respect please continue it ...a legend

  • @connectarunkumar
    @connectarunkumar 3 месяца назад

    You are correct. My interview got scheduled for 3 hrs(F2F) but got finished in 15mins. I felt very bad at that moment. Many times I tried but was not able to catch concepts of design patterns. I always use to think in C with classes. Your Design pattern tutorial is helping me a lot to understand. Converting your code from java to C++ to and understanding the concepts of design patterns. Started learning now. Thanks for explanations.

  • @shubhamrajput37
    @shubhamrajput37 8 месяцев назад +1

    It took me more than an hour to understand this while going through the Head First Book for the same design principle. Should have gone through the video first. Now I am going to use this "strategy", in which I will refer to your video first and then will go through the book

  • @deepanshukumar3943
    @deepanshukumar3943 Год назад +4

    That's what we call the way to teach the Patterns. Awesome way to teach with Amazing content. Hats off..

  • @siddharthtripathy3964
    @siddharthtripathy3964 3 месяца назад +2

    Kya gazab channel hai ye. love his explanation.

  • @mannusharma4620
    @mannusharma4620 3 месяца назад +2

    Just day 2 in your playlist and seriously brother hats off!!! Great work....

  • @unemployedcse3514
    @unemployedcse3514 Месяц назад +1

    I always vome back to this channel for design patterns and system design ❤

  • @kalpeshsaubhri
    @kalpeshsaubhri Год назад +4

    Bhai the best thing I like about your video is breadth you cover and the language hindi. Please keep these 2 things intact

  • @MrBaaz-do9ny
    @MrBaaz-do9ny 2 года назад +2

    aap bhagwan ho... I have seen almost 5 videos on strategy pattern but this is best till now..

  • @umangmalhotra1222
    @umangmalhotra1222 Год назад +1

    I have finally started going through your , LLD Playlist, and I will comment something on every video after watching. Not always need to be Praise or Learnings from the video.

  • @kartikeyrana3736
    @kartikeyrana3736 Год назад +1

    Gold mine! Gold mine! Gold Mine!
    this playlist is a GOLD MINE !!!

  • @pranaypaul6361
    @pranaypaul6361 Месяц назад +1

    Very good concept focussed way to explain such stuff.

  • @kashiffiroze5066
    @kashiffiroze5066 4 месяца назад +2

    Same can be achieved using @Qualifier annotation of springboot?

  • @anuragparla4201
    @anuragparla4201 Год назад +5

    I wish I had this available during my last semester. Design patterns would have been a breeze. Looking forward for more content :)

    • @ConceptandCoding
      @ConceptandCoding  Год назад +1

      Thank you. Pls also share it with your connections :)

  • @AKASHSONI21
    @AKASHSONI21 Год назад +2

    Thanks for this. Your way of explaining the concepts is very well and helpful.

  • @grrlgd3835
    @grrlgd3835 2 месяца назад +1

    it's really frustrating because I just know this would be good but only speak English. tried captions and translate but too confusing. and chance to redub some of these ? great tutorials

  • @royalfitness6860
    @royalfitness6860 4 месяца назад +1

    Great explanation but I would suggest to keep interface name start with I so it will be clear to understand more 😊

  • @paritoshdadhich2954
    @paritoshdadhich2954 11 месяцев назад +1

    Thank you for the view. Got to know about the when to use and how to use

  • @jinendrajain7672
    @jinendrajain7672 Год назад +2

    Awesome Content, I am sure it gonna teach Young Devs alot.

  • @hossainurrahaman
    @hossainurrahaman 2 года назад +5

    I have a few queries, maybe it will sound childish but I will ask anyway.
    We know there are 3 types of design patterns. Creational, structural and behavioral.
    i) Do we need to use all of these three patterns to make a full end to end application?
    i) If not then Can a single type of pattern handle all of the basic scenarios (creation, responsibility assignment to object etc.
    iii) is there any pattern which helps more during the interview.

    • @ConceptandCoding
      @ConceptandCoding  2 года назад +3

      Hi Rahman, very good question.
      Let me try to elaborate:
      - Do we need to use all 3 types of patterns to make an end to end application. Answer is NO.
      Using Design pattern is not mandatory. You can build system without using any pattern and live with it if system is Readable, Scalable, Manageable etc. You dont need design pattern.
      Let say for solving one part of the system you need to use some pattern, you can use a pattern from any type not necessary to use pattern from all 3 types.
      - Single pattern for helping in Interview, thats a tough question, i would say that depend on what question you get in the interview, basics questions can be created through common design patterns like Factory,Structural.
      But for some specific questions like design logging system, design Notify system we need to know those patterns in advance or come up some clean design during interview itself.

    • @hossainurrahaman
      @hossainurrahaman 2 года назад

      @@ConceptandCoding thank you for clearing the doubts. So basically during the interview for any particular scenario, I need to start with a design pattern which will suit most with the basic requirements. And need to add any additional design pattern for any new type of requirements.
      Eg:
      If asked to create a parking lot system, and if the basic requirements are
      can have multiple types of cars
      Can have multiple floor
      Can have multiple entry exit
      I can start with something like an abstract factory or factory pattern.
      If by any chance we need to log these events, we can use singleton pattern.
      Correct me if I am wrong.
      Thank you once again for prompt reply.

  • @mukulkopulwar
    @mukulkopulwar Год назад +2

    Great Explanation... Thanks for Sharing 🙂

  • @rohitvathumilli8176
    @rohitvathumilli8176 2 месяца назад

    1) Using a Drive Interface with Concrete Implementations
    2) Using a Single Drive Class with Behavior Specified in the Constructor
    Which is better approach

  • @nishanthmekala1409
    @nishanthmekala1409 Год назад +3

    Hi Shreyansh,
    Your videos are awesome. But I would like to know the below things
    1. which one we should start first hld or lld?
    2. In what way we should learn hld and lld?
    3. How to practice these and gain hands on experiene?
    4. Is it necessary to take a course after watching your videos?
    5. Any order, you would reccomment to follow?
    Please clear my doubts Shreyansh.

    • @chiragrajani12
      @chiragrajani12 Год назад +1

      Do let me know as well, I have the same doubt :/

    • @FusionArcs
      @FusionArcs Год назад +2

      You should always go ahead with the LLD first, even some companies don't have this round explicitly but then it assumed you should know these principles already.
      Then you go HLD.
      For both of them see videos on a lot of problem use cases.
      You will be able to grasp these concepts well

  • @_kidrah
    @_kidrah Месяц назад

    Great explanation, one doubt - According to SOLID principles Vehicle should be an interface right?

  • @CodeMode9313
    @CodeMode9313 19 дней назад +1

    jeher video paaji

  • @arifurlimon4060
    @arifurlimon4060 2 года назад +1

    Very clear and detailed explanation. Please make more videos in LLD

  • @sameerchoudhary8590
    @sameerchoudhary8590 7 месяцев назад +1

    What a splendid explanation. Thank you

  • @namanjain2488
    @namanjain2488 11 месяцев назад +2

    Note for my future reference
    5:51 -> at the same level children are using same code , code is not reusable
    solution -> make the common part as interface type

    • @ArunKumar-eo2uj
      @ArunKumar-eo2uj 10 дней назад

      but how exactly making common part as interface type is solving the problem

  • @AKASHSONI21
    @AKASHSONI21 Год назад +1

    Thanks for this. Your way of explaining the concepts is very explanatory

  • @prajwalmahaveera9346
    @prajwalmahaveera9346 8 месяцев назад +1

    This explanation was clear and damn helpful. Thanks!

  • @ankushladani496
    @ankushladani496 Год назад +1

    Thank you Bhaiya for this awesome explaination....

  • @homestaysandcafes
    @homestaysandcafes 2 года назад +2

    Sir From my knowledge we cant create objects of interface. But what I am able to analyse from above example is that we can create a has-a relationship using object of interface but we have to define the functions of interface in the class where object is declare?......Do let me know whether I am correct or not?
    BTW you are creating some GOD level content❤
    Please don't stop, I am ready to help you in every possible way.

    • @ConceptandCoding
      @ConceptandCoding  2 года назад +1

      let me check the video Hardik and then i will be able to clarify your doubts.
      But one thing i can tell is this is design pattern video, so pattern defined in this, and class and their relationship will be correct as its well documented.

    • @SageXperts
      @SageXperts 2 года назад

      We are not instantiating the object , but just declaring a variable of that type. And then assigning the value.

  • @5590priyank
    @5590priyank 4 дня назад

    If we prepare new objects in constructor, wouldn't it violate D of SOLID principle?

  • @arungoyal3795
    @arungoyal3795 2 года назад +1

    This is my first comment on youtube , the way explain is amazing....

  • @AshishGusain17
    @AshishGusain17 8 месяцев назад +1

    Thanks for the video..nice explaination

  • @shubhamagarwal1434
    @shubhamagarwal1434 3 месяца назад +1

    Very well explained...awsome!!!

  • @neelanshgulati2643
    @neelanshgulati2643 Год назад +1

    Great content... Keep making more videos.

  • @rahulgunkar6308
    @rahulgunkar6308 Год назад +3

    How come this channel has less subscriber?... You deserve more subs bro.. Nicely explained.

  • @harshwardhanchougule3039
    @harshwardhanchougule3039 Месяц назад

    Thank you very much for the detailed explanation !!

  • @abhishekpattnaik8531
    @abhishekpattnaik8531 Год назад +1

    Great explanation with simple example. Thanks Shrayansh.

  • @lal_1404
    @lal_1404 Месяц назад

    Good explanation, thanks. Just one question, are you using ipad or apple laptop.?

  • @RaviBiradar080
    @RaviBiradar080 2 года назад +1

    Very well explained with understandable examples👍

  • @iamkdblue
    @iamkdblue Год назад +1

    Jabr jst explanation bro 🎉 - aag laga diya

  • @rajdave7357
    @rajdave7357 Год назад +1

    ❤❤❤❤❤ maza aagaya guru ji

  • @X_y_zaid
    @X_y_zaid 3 месяца назад +1

    Such good explanation bro 🙌🏻

  • @ijazhaider6072
    @ijazhaider6072 3 месяца назад

    Brother, Normal Drive Strategy class would implement Drive Strategy that means it has-a relationship but in diagram it is-a relationship. Implements are always has-a and extends are is-a. Am i right or missing something?

  • @kashishkukreja7582
    @kashishkukreja7582 Год назад +3

    Why don't we create Vehicle as an interface and then create 2 more interfaces SprecialCapabilitiesVehicle and NormalCapabilitiesVehicle which extends Vehicle and has default implementation for drive respectively? Now the PassengerCar implements NormalCapabilitiesVehicle and SportsCar and PassengerCar implements SpecialCapabilitiesVehicle.

    • @amlanroutray288
      @amlanroutray288 Год назад

      this is because, lets assume, later on another functionality like display() will be added and it would be same for sport cars and passenger car and not in off road car, then we can create similar strategy for display and inject them in vehicle constructor. Adding more interfaces will not be a good scalable option with increase in features.

    • @tanujarora4906
      @tanujarora4906 Год назад +1

      As you update and add new features, how many interfaces you will add and how many interfaces you will refactor? That is the reason we should not opt for this.

  • @abhaytiwari1615
    @abhaytiwari1615 2 года назад +1

    Awesome video. Thanks for uploading.

  • @ambersinghrok
    @ambersinghrok 2 года назад +1

    bhai bs continue rakhna har cheez...bhut bhu help hojaegi

  • @geekydanish5990
    @geekydanish5990 2 года назад +3

    I am aware of the basics of design pattern and some common principle such (as SOLID, KISS, DRY, etc) as they come into use in writing better code in general but I want to know from an interview perspective how deep one need to go say in my case I have an experience of 1.2 years and going for an interview how low do I need to go and design when it comes to LLD, I was always skeptical about LLD to what extend can we go low, in short, does experience affects the quality of solution or is it just like DSA questions same for everyone.
    P.S I haven't experienced any such LLD questions so far so if you can clear things here would be really helpful
    And sorry long explanation 😅

    • @ConceptandCoding
      @ConceptandCoding  2 года назад +11

      Hi Danish, i can definitely tell you are good in coding and DSA.
      And regarding LLD, there is no Level (which you can go deep). Level might be there in HLD where you can go deeper n deeper on one part of the design, like DB design, next level is RDBMS or No SQL then next level is Master slave then next level is Partitioning then sharding etc.
      But for LLD,
      its all about how good is your understanding with Objects, from the given problem are you able to identify Actors (objects), then what all features(member variables) it should have and then function. And how these different object interact with each others / what would be their relationship. Thats what Design pattern will help and to identify when and where which design pattern need to apply, that comes with experience or practice.
      Sorry for the long answer 🙂

    • @geekydanish5990
      @geekydanish5990 2 года назад +2

      ​@@ConceptandCoding Hey Thanks for those kind words, I hear you and it totally make sense specially "identify Actors" and finally relationship , will take those input and start learning/practicing accordingly 🙏

  • @aksharbrahm4618
    @aksharbrahm4618 2 месяца назад

    One concern, Please take a look the arrows in UML diagram while showing parent child relationship arrows are pointing to parent instead of child. I have verified that those should point to child could you please comment on that.
    Because earlier it was confusing for me..

  • @paragroy5359
    @paragroy5359 Год назад +1

    Great video

  • @ArunKumar-eo2uj
    @ArunKumar-eo2uj 10 дней назад

    Hi..what exactly is the problem if child classes have different implementation of drive() method of the parent class.

  • @DemystifyFrontend
    @DemystifyFrontend Год назад +1

    Great explanation

  • @nikkm2000
    @nikkm2000 8 месяцев назад

    wonderful explanation dear. Just one suggestion(pls correct me if I am wrong), I think we have to give different name like myDrive() instead of drive() in Vehicle class. It will implicitly differentiate method used inside DriverStartegy.

  • @auroshisray9140
    @auroshisray9140 Год назад +1

    Thank you for this tutorial.

  • @Mohd_Rashid_Siddiqui
    @Mohd_Rashid_Siddiqui Год назад +1

    well explained.

  • @nabajyotimajumdar4511
    @nabajyotimajumdar4511 5 месяцев назад +1

    Splendid video!

  • @Sandywf
    @Sandywf 7 месяцев назад

    nice explanation ... please make a video on UML ,class and sequence diagram

  • @harshinredzone
    @harshinredzone Год назад

    Thanks for sharing knowledge, Shrayansh.

  • @neha6000
    @neha6000 2 года назад +1

    Very nice explanation thanks

  • @dhruvsinghal6451
    @dhruvsinghal6451 2 месяца назад

    is a parent class object always capable to be assigned to a child class object, like here drivestrategy is taking on both child objects

  • @theritesh973
    @theritesh973 2 года назад +1

    Awesome explanation😍

  • @mayursoni346
    @mayursoni346 Год назад

    Good content - really appreciate your efforts in explaining the concepts. Best wishes,.

  • @kochu7484
    @kochu7484 11 месяцев назад +1

    Hi, @conceptandcoding where is the git repo link for the same?

  • @shreyashachoudhary480
    @shreyashachoudhary480 Год назад +1

    Super Clear!

  • @sarthakbhatia7639
    @sarthakbhatia7639 10 месяцев назад

    We are using strategic design pattern to share common logic in subclass. Why can't we create a util function instead of following strategic design pattern?

  • @anookimmidisetty2939
    @anookimmidisetty2939 Год назад +1

    @Concept
    can you share the source code as well ?
    seems like in your gitlab, there is no code for Strategy design pattern one..

  • @ShivamSingh-mt4nr
    @ShivamSingh-mt4nr 2 месяца назад +1

    Thnanks bhaiya

  • @naveentmyug
    @naveentmyug 9 месяцев назад +1

    very thanks sir

  • @ankitkumar-qn3zy
    @ankitkumar-qn3zy 6 месяцев назад

    Is it not similar to dependency injection? Here we are replacing a method with the interface.

  • @DataMetricsSolutions
    @DataMetricsSolutions 2 года назад

    Loved the way explained. Immediately subscribed your channel

  • @nitishprasadkushwaha
    @nitishprasadkushwaha Год назад +1

    useful

  • @anketpatel2312
    @anketpatel2312 Год назад

    Easily understandable.

  • @karankaira
    @karankaira Год назад +1

    if base class has many functions then it is violatiing S of SOLID principles ? am i correct

    • @ConceptandCoding
      @ConceptandCoding  Год назад

      No, for everyone function we can not create a new class.
      Else we will create another problem called class explosion.
      We can keep related functions in one class.

  • @vineet4991
    @vineet4991 2 месяца назад

    This is basically Dependency Inversion Principle of SOLID?

  • @padmajamahapatra5546
    @padmajamahapatra5546 2 года назад

    Very well explained .
    Also can you please add other design patterns to this list ..

    • @ConceptandCoding
      @ConceptandCoding  2 года назад

      Hi, pld do check my LLD playlist, i have added many patterns and will add more soon

  • @anshulgoel1940
    @anshulgoel1940 8 месяцев назад

    When the child classes directly create the specific instances of Drive Strategy, aren't they violating the Dependency principle. ?

  • @runtime379
    @runtime379 Год назад +1

    OP content

  • @bhanusharma7066
    @bhanusharma7066 2 месяца назад

    maza aagya

  • @shubhamnigam14
    @shubhamnigam14 Год назад

    very good explanation ❤

  • @sanketneema286
    @sanketneema286 Год назад

    Thank you so much shrayansh.

  • @ashishmiglani02
    @ashishmiglani02 Год назад

    Why can we not assign NormalDriveStrategy in the Vehicle class, any how if super constructor is called from child class it will be over writing with the drive strategy provided by the child class. This will be useful to have default drive strategy defined.
    Suggest issue with this approach ?

  • @namansaraswat9691
    @namansaraswat9691 2 года назад

    Good video for strategy design pattern, can you please make a video where you solve a complete lld problem and show usage of strategy design pattern in the solution. If there is any solution you created in lld design that has usage of strategy design please let me know.

    • @ConceptandCoding
      @ConceptandCoding  2 года назад

      Hi Naman, check Design Parking Lot LLD video, i have used strategy pattern there

    • @namansaraswat9691
      @namansaraswat9691 2 года назад

      @@ConceptandCoding thanks for reply I am just going through that video only😄😀

  • @rishabhsrivastava7159
    @rishabhsrivastava7159 29 дней назад

    how did he create object of an interface ? can anyone explain ?

  • @user-mg9vx5fo4g
    @user-mg9vx5fo4g Год назад

    Nice explanation

  • @AmanSharma-ht5zq
    @AmanSharma-ht5zq 2 года назад +1

    Thanks

  • @AkshaySharma-bg3oj
    @AkshaySharma-bg3oj Год назад

    isnt arrow you mentioned in starting for has a belongs to single direction association in uml diagrams. Am I missing something. Great content tho, learned a lot. Thanks

    • @ConceptandCoding
      @ConceptandCoding  Год назад

      Hi Akshay, to make the UML and LLD easy to understand, i used these arrows for explaining is-a and has-a relationship.
      And in interview, at-least i haven't faced any issue bcoz of this arrows.
      But once you get the understanding better of classes, objects and relationship, then you can learn all UML arrows (which i found very hard to remember)

  • @elaserph
    @elaserph Год назад

    Cool!!!!

  • @chethan4519
    @chethan4519 7 месяцев назад

    How is drive strategy different from bridge design pattern? We are basically breaking the hierarchy such that we do not have to reuse the code for each possibility rather have it as two different hierarchies, such that they scale better. Is there anything significant which I'm missing?

    • @ConceptandCoding
      @ConceptandCoding  7 месяцев назад

      while both the Bridge and Strategy patterns involve breaking down hierarchies, the Bridge pattern separates abstraction from implementation, allowing them to vary independently, while the Strategy pattern encapsulates a family of algorithms, making them interchangeable. The key difference lies in their intent: Bridge focuses on separating abstraction and implementation, whereas Strategy focuses on encapsulating algorithms.

  • @AnilKumar-ev3ex
    @AnilKumar-ev3ex 2 месяца назад

    my question ...is there any problem for the person who don't know java, but know cpp?
    is this playlist is worthy?

  • @Suraj-tz3oq
    @Suraj-tz3oq 9 месяцев назад

    But what if I have a Vehicle class which is interface like or a class which shouldn't be instantiated

  • @ajaypolicepatil
    @ajaypolicepatil Год назад

    Hi Shreyansh,
    According to Liskov Substitution Principle, Don't we need to implement drive method in Passenger vehicle class as well ?

    • @ConceptandCoding
      @ConceptandCoding  Год назад

      If passenger Child Class has the same behaviour as Parent class, then it can use Parent class method. If it has to add some additional benefits, then it can override the method