4. Decorator Design Pattern Explanation with Java Coding, LLD System Design, System design interview

Поділитися
Вставка
  • Опубліковано 11 тра 2022
  • Hi, in this video we have covered #decoratorPattern out of many design pattern which is asked in Low level system design interview.
    ➡️ Become a Member: / @conceptandcoding

КОМЕНТАРІ • 301

  • @ashutoshkumar4565
    @ashutoshkumar4565 Рік тому +39

    I always wondered why "is-a" and "has-a" relationship between objects is even worth mentioning, but now I know just how important they are. It's amazing how a small detail like this can completely change the way we approach programming.

  • @sagar1691
    @sagar1691 5 місяців тому +3

    I worked in both product and service industry of small, medium and large size company, i can see the clear understanding and explanation by the narrator on each of the topic and make an analogy to live code in my work. Very well explained in details, that too free of charge ,i recommend these videos to all the freshers or laterals who are working in java for upskilling.

  • @user-pq6xi2bb9o
    @user-pq6xi2bb9o 4 місяці тому +2

    Just can not believe that this piece of gem is free on youtube !!
    Really appreciate your efforts. :)

  • @wul_frik
    @wul_frik Рік тому +15

    Amazing concept, learning LLD is really an eye-opener. Thanks for this amazing video and explanation.

    • @ConceptandCoding
      @ConceptandCoding  Рік тому +1

      Thank you, pls do share it with your connections 😊

  • @tarunkundhiya5196
    @tarunkundhiya5196 Рік тому +1

    Nice point : both isA and hasA property is needed! Awesome Explanation!

  • @patrisrikanth
    @patrisrikanth 5 місяців тому +4

    Unbelievable that we are getting this video for free of cost.... Awesome explanation.

    • @kartikag01
      @kartikag01 3 місяці тому

      bhai ne kuch videos paid kr di 😁

  • @TECH_PANDA_23
    @TECH_PANDA_23 3 місяці тому +1

    very good explanation is the best, simplicity is the base here and visual representation is toppings

  • @yashgupta6726
    @yashgupta6726 Рік тому +5

    Wish had explored your channel a bit earlier, awesome content on Low-level design(one-stop solution), Just feedback if you can arrange the videos of the playlist in what order to watch it will be really great for people.

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      Thank you Yash, not sure if youtube does not show playlist title and description, i have mentioned in both the place that Start from bottom and move Upward, let me check

  • @pranav8937
    @pranav8937 2 дні тому +1

    J is silent in jalapeno😅. Rest video was awesome!!

  • @VinayakKhairnar-bb7oc
    @VinayakKhairnar-bb7oc 28 днів тому

    'Has a' and 'is a' make concept much simpler to understand. Good point you make to explain.

  • @sravanakirtana2787
    @sravanakirtana2787 2 місяці тому +1

    Awesome explanation Sir. Thank you very much

  • @cybergurucool2632
    @cybergurucool2632 Рік тому +3

    Superb explanation. To recollect decorator pattern, I will remember the pizza example. Thanks a lot of this super useful video.

  • @programming6556
    @programming6556 3 місяці тому +1

    Great job Shrayansh .

  • @omkarsharan3967
    @omkarsharan3967 Рік тому +1

    The way you explain with examples it makes the concept very clear..Keep it up and thank you very much :)

  • @ayushigupta685
    @ayushigupta685 4 місяці тому

    I really appreciate your efforts thankyou so much😇😇😇😇👏👏👏👏👏

  • @harshinredzone
    @harshinredzone Рік тому +2

    Thanks for sorting it in "reverse" order. Glad that you considered the feedback. 😀

  • @mrfred456123
    @mrfred456123 6 місяців тому +1

    Amazing explanation

  • @adhyanneekhra4853
    @adhyanneekhra4853 26 днів тому +1

    🤯🤯🤯🤯🤯
    Swaad hi agya 😋😋😋😛.
    Thanks Shreyansh for this Amazing vedio series. Great content. And Beautifully explained.

  • @homestaysandcafes
    @homestaysandcafes Рік тому +1

    Very Well explained sir!

  • @akshaymahajan9626
    @akshaymahajan9626 4 місяці тому +1

    Great work !

  • @imranmohamed5467
    @imranmohamed5467 Рік тому +3

    Nice video. You can add the main class with example of creation of these objects and using them that would help understand the concept better.

    • @satyampandey6633
      @satyampandey6633 8 місяців тому +1

      public class PizzaShop {
      public static void main(String[] args) {
      BasePizza base = new VegDelight();
      System.out.println(base.cost());
      BasePizza customPizza = new ExtraCheese(new Mushroom(new Farmhouse()));
      System.out.println(customPizza.cost());
      }
      }

  • @princesharma-wi3kn
    @princesharma-wi3kn Місяць тому

    Thank you so much for the detailed explanation :)

  • @your_name96
    @your_name96 Рік тому

    really thank you sir for your huge efforts, but sir, if we keep a final ingredients price Map in Base Pizza itself, and keep Topping Map containing topping and its frequency, this can be solved much simply for calculating the price, but then again that solution is not scalable ig when toppings list and price need to be updated, thanks again.

  • @adityarout1276
    @adityarout1276 Рік тому +2

    I can totally relate Decorator Design Pattern now, yestarday only i ate the 'PIZZA' now i'm learning and watching it. 😃✌

  • @DivineVision201
    @DivineVision201 Рік тому +1

    Thanks Shreyansh. Video is very helpful in understanding. I have implemented the same in python. Awesome initiative

  • @realthings7931
    @realthings7931 Рік тому +1

    Great Explanation. Thanks for the video🙏

  • @manashimazumder7185
    @manashimazumder7185 Рік тому +2

    Great content. First time i am feeling confident about LLD. Please share your knowledge more with us :)

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      Thanks there is a complete in depth playlist Manashi:)

    • @manashimazumder7185
      @manashimazumder7185 Рік тому +1

      @@ConceptandCoding Yes am checking. Thanks again for the content.

  • @sameerchoudhary8590
    @sameerchoudhary8590 4 місяці тому

    Great explanation. But I need to revisit the example once again.

  • @harishpareek6933
    @harishpareek6933 Рік тому +1

    Thank you sir for this Amazing content. I have only one question that for every layer we have to create a new class so if our application will scale too much in that case we might have thousands of layers (Not specifically Pizza problem) so how can we solve that ?

  • @saifurrahmanbhuiyan925
    @saifurrahmanbhuiyan925 Рік тому +5

    Such awesome content, then its free. i cant explain how satisfied i am satisfied with your content. Thanks a lot bro. i have one request bro, whether you provide content free or paid, it does matter. just keep up. i have seen lots of videos and read books regarding design pattern. nobody explained like you. one thing makes your content unique, you deeply explain OOP concept behind design pattern.

  • @guptajicodes
    @guptajicodes 5 місяців тому

    I really understood this design pattern. thank you sir for wonderful explaination

  • @hbolchatwar5308
    @hbolchatwar5308 11 місяців тому +2

    Very good explanation with code...u did awesome job. really thanks a lot.

  • @parasmyname784
    @parasmyname784 Рік тому +1

    Awesome, simply awesome

  • @theunusual4566
    @theunusual4566 Рік тому +1

    Thank you sir for another awesome video.

  • @Narendra-Pratap-singh
    @Narendra-Pratap-singh 12 днів тому +1

    thanks for the video

  • @sumitbasu5146
    @sumitbasu5146 Рік тому +1

    Thank you sir..today I start calling u sir..Thank you for ur efforts 🙏

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      Thanks a lot buddy but call me Shrayansh, we both are students,let's keep learning and sharing

  • @DurgaShiva7574
    @DurgaShiva7574 Рік тому +1

    this video is a GEM to the whole community, that too by a GEM..... hats off 2 u sir.. all this premium content for free , not possible on this whole planet itself,....
    wish the java playlist would also become public / free someday , so that it can reach to every deserving candidate who cant afford the subscription at that point of time... s teachers like you are rare to find, your knowledge is uncomparable...

  • @simplymaths5487
    @simplymaths5487 Рік тому +1

    Thanks for this playlist sir. Means a lot to us

  • @sundergopalsingh
    @sundergopalsingh 7 місяців тому +1

    Amazing video Shrayansh!!

  • @prashantgupta6160
    @prashantgupta6160 Рік тому

    thoda nhi, bahut useful h bhai, please continue LLD series, you are one of best educators on UA-cam

  • @zaheerabass7955
    @zaheerabass7955 11 місяців тому

    Thank you so much for the amazing contents

  • @HEMANTVERMA-pv2pe
    @HEMANTVERMA-pv2pe Рік тому

    Thanks for the great content!
    Your videos are easy to understand.
    Can we please reorder the videos in the order, currently its in reverse order and we have to play videos manually each time.

  • @kalravsharma178
    @kalravsharma178 Рік тому +1

    Great Video , thanks a lot

  • @ayushsamyal9070
    @ayushsamyal9070 Рік тому +1

    Hi, Thanks for the great explanation. One small request could you please share the notes and the code that you are using for the explaination in each video. It would be beneficial.

  • @shatrudhankumar7824
    @shatrudhankumar7824 3 місяці тому +1

    Awesome😍

  • @amitgupta-or5nm
    @amitgupta-or5nm Рік тому +1

    Great expansion 😃 ....

  • @hiren6691
    @hiren6691 2 роки тому +1

    keep going :)

  • @arshalakhan567
    @arshalakhan567 Рік тому

    Such a great content!:)

  • @durgeshrai04
    @durgeshrai04 Рік тому

    Awesome Explantion

  • @HimanshuKumar-xz5tk
    @HimanshuKumar-xz5tk Рік тому

    great!

  • @naveentmyug
    @naveentmyug 6 місяців тому +1

    Very thanks

  • @satishkumpatla5848
    @satishkumpatla5848 3 місяці тому

    Please explain when to use decorator pattern and builder design pattern and differemces. Both seems similar.

  • @utkarshjaiswal7224
    @utkarshjaiswal7224 2 місяці тому

    Can we use interface instead of abstract class..I both in this case both will work fine

  • @parag-kumar
    @parag-kumar 10 місяців тому +1

    Great explanation! :)

  • @vivekthakur1953
    @vivekthakur1953 Рік тому

    You should create video where you clearly stat the differences between "HAS- A" and "IS -A" relationship which will help many people

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      I think in 1 video i did that Vivek, if not then do check the first video of "Live LLD" playlist in that i must have explained it

    • @ananddidwania3799
      @ananddidwania3799 Рік тому

      Here is the timestamp ua-cam.com/video/-UjjfzJ574w/v-deo.html to understand "IS-A" and "HAS-A" relationship

  • @ShivamVerma-ut6nk
    @ShivamVerma-ut6nk Рік тому

    please make a video on is-a and has-a concept with an example. Its very confusing.

  • @user-et1lp1kp4m
    @user-et1lp1kp4m 9 місяців тому

    Can you show the working demo as well. Need to understand how is main working. Based on input(order is magaretia plus extra cheese etc..)?

  • @gunjanyadu865
    @gunjanyadu865 Рік тому

    Hi great videos. Can you please share the notes or code that you writing ? Moreover, when will the whole LLD playlist be completed?
    Eagerly waiting to complete all.

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      When it will be completed it will be difficult for me to say. I am going with 1 video a week for now. But i am consistent

  • @NeverGiveUp186
    @NeverGiveUp186 Рік тому +1

    Another use case for this pattern is the avatar creation system in WhatsApp/FB

  • @sloppybug9856
    @sloppybug9856 Рік тому

    Hello sir, first of all thank you for this amazing content ❤.... I hv one question why BasePizza and ToppingDecorator abstract class are abstract classes not interface. ... Just wondering when to use abstract class and when to use interface

    • @ConceptandCoding
      @ConceptandCoding  Рік тому +1

      Generally both purpose is same to hide the implementation. Interface provide 100% abstraction, while in abstract class you can also implement some methods which are common to child classes

  • @shreyashachoudhary480
    @shreyashachoudhary480 Рік тому +1

    Super clear, I had a doubt: So according to this example "ExtraCheese" is a BasePizza due to indirect inheritance.
    So in Vehicle example, the decorator would extend the BaseVehicle. Power Steering would inherit from decorator and in-directly have a "is-a" relationship with BaseVehicle, right
    So in a way we are saying power-steering is a BaseVehicle so is it right? As power steering is not a Vehicle rather its a feature

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      Correct, if you want this pattern and design car with this way. Then you are right

  • @harshilgupta9225
    @harshilgupta9225 Рік тому

    Maza Aagya
    respect++

  • @NeverGiveUp186
    @NeverGiveUp186 Рік тому +1

    Hello Sir, first of all thank you very much for the amazing content!
    I have one doubt. For interviews, are all the design patterns necessary ? Becoz it would be difficult to remember all of them 😅.. How much is expected from us if we have 2-3 years experience ?

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      Thank you. See it's a very valid question, nobody can remember all these designs patterns.
      Couple of things:
      - How many design patterns is sufficient? Very difficult to answer, what interviewer can ask, we don't know right.
      - How to remember all? We don't have to, just try to implement design patterns with your own examples, whatever examples i used take it as a reference and then try to implement with different example. It will help you to remember in which usecase what has to be done.
      Keep 5-6 design patterns on your finger tips which is very frequently asked.

    • @NeverGiveUp186
      @NeverGiveUp186 Рік тому

      @@ConceptandCoding Thanks a lot Sir for the quick and detailed response!!

  • @Mmmmmkoogfssdvbhvggg
    @Mmmmmkoogfssdvbhvggg 7 місяців тому +1

    In my approach, I used an interface for defining a behavior and then created multiple concrete classes implementing this interface, each representing a different behavior. This seems somewhat similar to the Decorator Pattern, where each decorator wraps an object and adds its behavior.
    However, I'm struggling to see a significant advantage of the Decorator Pattern over my approach in terms of scalability, flexibility, and maintainability, especially when considering the addition of new behaviors. In both cases, adding a new behavior seems to require just adding a new class without modifying existing ones. Could you help clarify the specific advantages of using the Decorator Pattern over this approach?

    • @kunalsuryavanshi7650
      @kunalsuryavanshi7650 5 місяців тому

      You have created A,B C different concrete classes. If you want to create new concrete classes with properties of lets say B , with decorator pattern you will have B1 , B2 etc. But without decorator pattern you might have to write more code to not only include the property of B but also its own new property.
      I hope this helps.

  • @kushal7966
    @kushal7966 10 місяців тому

    Thank You

  • @singhji4149
    @singhji4149 9 місяців тому

    One very important question sir ji, when to interfere and when to use abstract can u make a detailed video in this, i think this will solve many questions of LLD in a thinking way

    • @ConceptandCoding
      @ConceptandCoding  9 місяців тому

      When you want 100% abstraction go for interface, else go for Abstract class

    • @singhji4149
      @singhji4149 9 місяців тому

      Yes, i know this, but while in interview when we say that i will create an abstract class or interface or concrete class they always ask why so? Why not interface inplace of abstract class, this is has been asked alot.
      So just a request when ever u make any any interface or abstract class please tell us the why interface or abstract please 🙏

  • @nisarggogate8952
    @nisarggogate8952 2 місяці тому

    Firstly loving your videos! So thanks for that
    Q. Is this really good to do something like new ExtraCheeze( new ExtraPanner(new FarmHousePizza())))...
    B'coz not Basepizza object in ExtraCheese already contains a topping of ExtraPanner....
    While if we were not to use Decorator design pattern... We would have had all the toppings on same level... (May be with a boolean flag)
    It might matter if we don't want cheese on top of panner but panner and cheese mixed very well... (Sty could not think of a better example)

  • @vibhavagarwal9968
    @vibhavagarwal9968 5 місяців тому

    Hello sir, thanks for the amazing content. I have one question, in the above implementation instead of creating a decorator class, cant we directly extend BasePizza class for ExtraCheese/Mushroom classes? I think there is something fundamentally wrong in this, but not sure what exactly 😅

    • @ConceptandCoding
      @ConceptandCoding  5 місяців тому

      just think of combinations of chesse. mushroom and just with base pizza itself.
      now if there are 10 types of decorator and multiple base pizza, then no of combinations would be large and you will end up creating lot and lot of classes. thats what decorator pattern saves us.
      try to implement what you mentioned and you will get to know

  • @sagarbiradar1104
    @sagarbiradar1104 Рік тому +1

    You are awesomeee🔥🔥❤

  • @preethisubbu7460
    @preethisubbu7460 11 місяців тому

    Adding English subtitle would be really helpful for larger community.

    • @ConceptandCoding
      @ConceptandCoding  11 місяців тому

      Yes will work on old video, but all latest videos are in English only

  • @vennamurthy
    @vennamurthy Рік тому +3

    Strategy Pattern & Decorator seems alike to me like IStrategy even BasePizza Can have only HAS-A relation with ToppingDecorator or list (to calculate cost for all types of toppings) right. Please help me to understand the difference , By the way thanks for the videos :) #Concept&&Coding

    • @ayushdas17
      @ayushdas17 Рік тому

      I think main task of Strategy Pattern is to remove redundant code where as Decorator Pattern is used to solve the problem of maintainability of our classes.

  • @devashishrana1637
    @devashishrana1637 7 місяців тому

    I was thinking, can the Pizza example be considered as a builder pattern as well? Even in this each toppings can be separate methods? Can you clear me on this?
    Thanks for the really amazing Videos!!

    • @ConceptandCoding
      @ConceptandCoding  7 місяців тому

      try it out once. I think it can be done, but need to check.

  • @allaboutcricket7728
    @allaboutcricket7728 Рік тому +1

    Hi Sir,
    I have 1 question, when both the classes, ExtraCheese and Mushroom have the BasePizza object, then why not add it as part of the ToppingDecorator class itself?

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      Ack. Will get back to you by eod

    • @ayushdas17
      @ayushdas17 Рік тому +1

      By the Dependency Inversion Principle classes should depend on interfaces or abstract classes rather than concrete classes.

  • @uuujjwalsquare8991
    @uuujjwalsquare8991 2 місяці тому

    What if we directly extend base class inplace of topper decorator

  • @travelwsamad
    @travelwsamad 4 місяці тому

    Others : Learning Decorator Pattern from this Video
    Meanwhile me -> Learning and Ordering a Margarita Pizza after watching 😂

  • @BeyondTheFamiliar_2023
    @BeyondTheFamiliar_2023 Рік тому +3

    Wonderfully explained!!
    Its more like recurssion, so if imagine there are 100 of layes of decorator, then there might be overlapping subproblems. Can dp be used in that case?

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      i won't say its a Recursion, to me its looks like more of a hierarchy. Child-> Parent -> Parent ---> likewise

    • @BeyondTheFamiliar_2023
      @BeyondTheFamiliar_2023 Рік тому

      @@ConceptandCoding but a child might not replicate the same behaviouras that of parent.

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      @@BeyondTheFamiliar_2023 ummm Why not, in inheritance, child has its Parent capabilities+ additionally its own.

    • @meme_engineering4521
      @meme_engineering4521 Рік тому +7

      har jaga dsa ghusa do matlab

  • @geekydanish5990
    @geekydanish5990 2 роки тому +1

    I feel an improvment to this can be rather than creating concrete class for each topping create enum topping list class to dynamically update price for each topping

    • @ConceptandCoding
      @ConceptandCoding  2 роки тому

      can you implement and show how for the same example which i took.

    • @geekydanish5990
      @geekydanish5990 2 роки тому

      @@ConceptandCoding sure

    • @geekydanish5990
      @geekydanish5990 2 роки тому

      from __future__ import annotations
      from abc import ABC, abstractmethod
      import enum
      import string
      from typing import List
      class ToppingList(enum.Enum):
      extra_cheese = 20.00
      jalapeno = 30.00
      mushroom = 10.00
      chicken_tikka = 60.00
      class BasePizza(ABC):
      @abstractmethod
      def get_ingregents(self) -> List:
      pass
      @abstractmethod
      def cost(self) -> float:
      pass
      # concrete pizza class
      class MargaritaPizza(BasePizza):
      ingredients: List = ['Cheese','Bread','Olive Oil']
      def get_ingregents(self) -> List:
      return self.ingredients
      def cost(self) -> float:
      return 150.00
      class VeggiePizza(BasePizza):
      ingredients: List = ['Cheese','Bread','Olive Oil','Veggies']
      def get_ingregents(self) -> List:
      return self.ingredients
      def cost(self) -> float:
      return 200.00
      class Topping(BasePizza):
      _base_pizza: BasePizza = None
      def __init__(self,base_pizza: BasePizza, topping:string) -> None:
      self._base_pizza = base_pizza
      self._topping = topping
      def get_ingregents(self) -> List:
      base_ingregents = self._base_pizza.get_ingregents()
      base_ingregents.append(self._topping)
      return base_ingregents
      def cost(self) -> float:
      return self._base_pizza.cost() + ToppingList[self._topping].value
      if __name__ == '__main__':
      base_pizza = MargaritaPizza()
      margarita_pizza_extra_cheese = Topping(base_pizza,'extra_cheese')
      print(margarita_pizza_extra_cheese.get_ingregents())
      print(margarita_pizza_extra_cheese.cost())
      margarita_pizza_extra_cheese_jalapeno = Topping(margarita_pizza_extra_cheese,'jalapeno')
      print(margarita_pizza_extra_cheese_jalapeno.get_ingregents())
      print(margarita_pizza_extra_cheese_jalapeno.cost())

    • @geekydanish5990
      @geekydanish5990 2 роки тому

      @@ConceptandCoding Hey does the below solution follow any anti pattern wrt to decorator design pattern

    • @ConceptandCoding
      @ConceptandCoding  2 роки тому +3

      this code still maintains 'is-a' and 'has-a' relationship. So that is the requirement of decorator pattern .
      But here my concern with enum is not decorator pattern but with scalability and managebility lets say i want to add more methodd apart from Cost method like TotalCalories, totalProtein , totalCarbs etc. (lets say 10 -20 methods like this) how easy with enum to support this.

  • @patrisrikanth
    @patrisrikanth 5 місяців тому

    Hi, I understood this clearly, But I have a small doubt regarding Abstract class vs Interface. Can't we use Interface in BasePizza and ToppingDecorator, rather than using Abstract class? Other than this, I understood everything. Super explanation sir.

    • @vmalhotra98
      @vmalhotra98 4 місяці тому +1

      same question . Can anyone explain same @Concept && Coding - by Shrayansh

  • @doingsneakypeakylike
    @doingsneakypeakylike Рік тому +1

    Hi. Thanks for the explanation. I have a question. Can't we use a builder pattern to create different toppings on the pizza or add different features to a car? If decorator pattern is a better pattern to do it, can you please explain why? My thought process is that builder pattern is good for making pizza because once a pizza is ordered you don't need to give customer the flexibility to change it after placing the order. Can you please let me know what you think? Thank you once again.

    • @souvikpodder9515
      @souvikpodder9515 Рік тому

      +1 I am even having the same doubt. So, I too feel if some clarity is provided by the author would be helpful.
      With my understanding, I feel with this pattern we will not violate Open/Closed Principal because whenever there will be new topping, we can add a separate base class whereas in builder pattern we will be modifying the builder class to add the new toppings.

    • @ashish261096
      @ashish261096 Рік тому

      I also had the same doubt, but in Pizza scenario I think it would be correct to use Decorator pattern since we don't get the all the topping details at the start itself, user may add topping or may not. So this pattern will be used if the object(Pizza) is already created and after that we need to add new features(topppings) basically at run time we are adding new features to existing object. Builder pattern will be used if we have all the details at the start itself while creating Object.

    • @shubhamshah2125
      @shubhamshah2125 Рік тому

      IMO.. You can also have toppings and types of pizza inside pizza.. but decorator pattern is used when you don't want to modify existing object and want to add functionality only.. ex: pizza won't always have toppings..it needs it only for cost computation.. so why have it inside pizza.. classic examples are Java Streams

  • @princesharma-wi3kn
    @princesharma-wi3kn 24 дні тому +1

    Apne saraswatya mantra liya hua hai kya bro🥰

  • @geetikapaul5071
    @geetikapaul5071 11 місяців тому

    Thanks for the videos.
    I have a question: why did you use an abstract class? Could we use interface instead?

    • @ConceptandCoding
      @ConceptandCoding  11 місяців тому

      yes, we can if you dont have a usecase where you have to implement common method , then interface is good too.

    • @geetikapaul5071
      @geetikapaul5071 11 місяців тому

      Thank you for the prompt response!

  • @nishantkumar6116
    @nishantkumar6116 Рік тому +1

    Does Response Wrapper that is being used while paasing responses from API also follows decorator pattern?

  • @soumakpoddar4372
    @soumakpoddar4372 2 місяці тому

    can we not use interfaces instead of abstract classes ?

  • @himanshuchhikara4918
    @himanshuchhikara4918 3 місяці тому +1

    why you used abstract class , can we use interfaces also ?

  • @abirpaul9027
    @abirpaul9027 10 місяців тому

    Could we have used Builder design Pattern to achieve the same?

  • @user-vn5hk5gs3n
    @user-vn5hk5gs3n 10 місяців тому +1

    Can you explain why you used decorator abstract class in between rather than extending base pizza in ExtraCheese and ExtraMushroom classes?

    • @shyren_more
      @shyren_more 10 місяців тому

      had the same question

  • @AbhilashPareek
    @AbhilashPareek Рік тому +1

    ExtraCheese and mushroom can also extend basePizza right?
    Why do we have another abstract class in between?

    • @ayushjain7748
      @ayushjain7748 Місяць тому

      Exactly. I have the same question in my mind.

  • @ksaloni
    @ksaloni 7 місяців тому

    For the pizza making or adding accessories to car, builder design pattern seems more useful. What’s your say?

    • @ConceptandCoding
      @ConceptandCoding  6 місяців тому

      could you please try to implement it and see what challenge you are facing.

  • @DevanshChiluka
    @DevanshChiluka 2 місяці тому +1

  • @Suryabasettydustin
    @Suryabasettydustin Рік тому +1

    I could be wrong but, can this problem of multiple object permutations be solved by builder pattern also?

    • @kavyababu7
      @kavyababu7 9 місяців тому

      I have the same question. Since the Pizza problem comes more in a object creational use case, wouldn't builder pattern fit more for this use case.
      Decorators are used to modify the functionality of an object in runtime. Using decorator for object creation puts the object in an inconsistent state till all the decorators are completed.
      In real scenarios, decorator would be useful, when we need to stack up the operations like encoding a file and then compressing etc.

  • @kartikag01
    @kartikag01 3 місяці тому

    Can we have array if Toppings in Pizza Class and while calc cost in Pizza class add topping's cost also. 🤔

  • @akhilsharma1778
    @akhilsharma1778 Рік тому +2

    Why are we using ToppingDecorator? If we are anyways inheriting Extracheese then can't we inherit it directly from BasePizza as we aren't doing anything in ToppingDecorator class?

    • @niwanshumaheshwari4534
      @niwanshumaheshwari4534 Рік тому

      So here inheritance is only used for type matching and composition is used to get the behaviour.

    • @sumitbasu5146
      @sumitbasu5146 Рік тому

      It will give us flexibility in future

  • @anirbansaha7987
    @anirbansaha7987 7 місяців тому

    Hi,
    Suppose we have an abstract pizza class and an abstract toppings class which are inherited by concrete classes . Now, every pizza class has a list of toppings . So, when we calculate the cost, we just iterate over that list and compute the total cost. I have a big doubt that if only has-a relationship is solving this problem. Why do we need such a complex structure of has-a and is-a relationship existing at the same time and what extra advantage does decorator pattern bring into picture ?Looking forward to your reply to this question.

    • @ConceptandCoding
      @ConceptandCoding  7 місяців тому

      okay, could you please tell me, how you would solve the scenario where you have 1000s of combination like
      BasePizze,
      BasePizze + cheese ,
      BasePizza + mushroom,
      Veggie + cheese and go on......
      The biggest advantage decorator pattern adds up is control on number of classes if there are so so many combinations possible.

    • @anirbansaha7987
      @anirbansaha7987 6 місяців тому

      @@ConceptandCoding Thanks for your reply.
      Lets suppose Base pizza is extended by two Pizza class Veg and Non Veg Pizza. I have another ExtraAddOn class which is inherited by say cheese, mushroom, paneer and so on ...
      Now, I have a " vector extraList; " in Veg and Non Veg Pizza class.
      So, whatever combinations of ExtraAddOn you need, you can add to that list and calculate cost.
      Only thing is that you cannot mix the base Pizza options, but i don't think that's the requirement here. Am i thinking it wrong ?

  • @anjumanislamiachhatarpur7093
    @anjumanislamiachhatarpur7093 Рік тому +1

    I have a question, when we create the base parent class... how we can decide to take interface or abstract. I think both will work fine. So which one to choose in that case, could you please give a little clearity.?

  • @shubhamtrivedi2155
    @shubhamtrivedi2155 24 дні тому

    Do you have any github repo for notes or doc link ?

  • @rahulbera454
    @rahulbera454 Рік тому

    So according to my understanding we use decorator pattern for incrementally include or not include features. Can't this be also achieved with builder pattern ??? Can you briefly compare the tradeoffs ( with reply to this comment ), Thank you.

  • @FitMitDiary
    @FitMitDiary Рік тому

    Let's say if we have a simple case as a Pizza then instead of abstract class for Base Pizza, can we use interface ?

    • @ConceptandCoding
      @ConceptandCoding  Рік тому

      Yes we can, if you don't want to implement any common method in that

  • @developerDebanjan
    @developerDebanjan 5 місяців тому

    How is a topping "is-A" basePizza? Does that make sense?

  • @sidharthkumar5303
    @sidharthkumar5303 4 місяці тому

    Thanks!

    • @ConceptandCoding
      @ConceptandCoding  4 місяці тому

      thanks a lot buddy for super thanks 🙏

    • @sidharthkumar5303
      @sidharthkumar5303 4 місяці тому

      @@ConceptandCodinghello sir , i want to become member so I can access all your videos of this lld series. Please tell me the process

    • @ConceptandCoding
      @ConceptandCoding  4 місяці тому

      at channel home page you will find the join button, there you can join “Unlock LLD, HLD..” one

    • @sidharthkumar5303
      @sidharthkumar5303 4 місяці тому

      @@ConceptandCoding thanks joined

  • @litcode702
    @litcode702 Рік тому

    can't we pass ToppingDecorator object in extraCheese or mushroom constructor?