Тёмный

23. Builder Design Pattern with Examples, LLD | Low Level Design Interview Question | System Design 

Concept && Coding - by Shrayansh
Подписаться 129 тыс.
Просмотров 30 тыс.
50% 1

Опубликовано:

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 88   
@ConceptandCoding
@ConceptandCoding Год назад
LLD Basics to Advanced Playlist: ru-vid.com/group/PL6W8uoQQ2c61X_9e6Net0WdYZidm7zooW HLD Basics to Advanced Playlist: ru-vid.com/group/PL6W8uoQQ2c63W58rpNFDwdrBnq5G3EfT7 1:1 on topmate: topmate.io/concept_coding
@rashidsiddiqui4502
@rashidsiddiqui4502 8 месяцев назад
So the crux of the differentiation at last is that builder design pattern doesn't support dynamic creation of objects whereas decorator design pattern support dynamic creation of objects. Thank you for amazing explanation sir ❤
@akshinaxmedov3823
@akshinaxmedov3823 5 дней назад
You are the best teacher!!
@rishabhgoyal8110
@rishabhgoyal8110 3 дня назад
for people wondering what Shreyansh means by "Dynamically Alter an Object": public class DecoratorPatternDemo { public static void main(String[] args) { Pizza pizza = new PlainPizza(); // Start with Plain Pizza pizza = new CheeseDecorator(pizza); // Add Cheese dynamically pizza = new PepperoniDecorator(pizza); // Add Pepperoni dynamically System.out.println(pizza.makePizza()); } }
@SatyamKumar-bw4vi
@SatyamKumar-bw4vi Год назад
Hare Krishna Bhaiya..! Great Video🙂 You are really Talented, Kind & generous.
@Lucifer-xt7un
@Lucifer-xt7un Год назад
Thanks is a very small word for this level of quality content for free.❤️❤️
@ConceptandCoding
@ConceptandCoding Год назад
Thanks Lucifer
@swatiacharya9073
@swatiacharya9073 10 месяцев назад
Wow...such real life example...made it easy to understand..thank you soo much
@ConceptandCoding
@ConceptandCoding 10 месяцев назад
Thanks
@lucygaming9726
@lucygaming9726 4 месяца назад
This is quite helpful video. I saw a couple of other video but this explains the design pattern quite well.
@sanjaykatta6499
@sanjaykatta6499 Год назад
Hi Shreyansh, great explanation and thank you so much for the content and the excellent road map that you have.
@ConceptandCoding
@ConceptandCoding Год назад
Thanks
@aseemsharma4643
@aseemsharma4643 9 месяцев назад
Hi, it seems adding Director is like having extra implementation, String Builder doesn't have it, but it is good to have it, if you need direct access to object with specific list of parameters.
@chandrikasaha6301
@chandrikasaha6301 11 месяцев назад
sir you teach well. but please take one example at a time. that will help you and the audience to learn the topic and apply it twice one after another
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
Noted.
@piyushgupta7210
@piyushgupta7210 9 месяцев назад
Amazing explanation
@ConceptandCoding
@ConceptandCoding 9 месяцев назад
Thank you
@kolasphoorti1030
@kolasphoorti1030 Год назад
Hi Shreyansh, great video. I have a question : I understand the purpose of builder is to put the code required to construct an object in each step, so it can be reusable while building various representations of complex objects while also dealing with constructor parameter explosion problem. But I still don't get why another class(builder) is needed. Say in above example, can't we have the set methods in Student class itself? The student will have constructor with no arguments where initially all the fields will be set to null and then the director can interact directly call methods of Student class in sequence instead of Student builder class. This deals with constructor parameter explosion problem .This also reduces code size and duplication of fields in builder class.
@animay100
@animay100 Год назад
same question
@raj_soni4007
@raj_soni4007 Год назад
i have the same question too , why to have a seprate builder with same attribute the set them then pass it to product class and then get the product build we can have setter in product class with default constructor and setters for each attribute.
@sanjaykatta6499
@sanjaykatta6499 Год назад
we cant have the setter methods within the student class to address the immutability problem. In many situations, we want the object created to be immutable, if you have the setter methods within the student class, then its objects would be mutable. If you use the builder class, then we can selectively set the values and return the final object only after constructing the entire object (with the values that are provided for mandatory attributes and default values for the optional attributes)
@vaibhavjaiswal7811
@vaibhavjaiswal7811 Год назад
@@sanjaykatta6499 Thanks for this clear explanation. Could directly relate it to String and StringBuilder
@Suraj-tz3oq
@Suraj-tz3oq 9 месяцев назад
​@@sanjaykatta6499Thanks for the explanation, I could only think of your 2nd point but 1st point is also important
@himanshuchhikara4918
@himanshuchhikara4918 Год назад
Hey please add mock interviews from SDE1 expectations perspective. Btw thank you for video. Design pattern videos by you are the best in the world.
@ConceptandCoding
@ConceptandCoding Год назад
Noted thank you
@harshinredzone
@harshinredzone Год назад
Awesome... The differentiation at last was long due.
@ConceptandCoding
@ConceptandCoding Год назад
Thanks
@stuti5700
@stuti5700 9 месяцев назад
Hi @Shreyansh I am completely confused with the explanation for Builder and Decorator pattern difference. Why Builder will create different class. Base pizza, cheese, Mushroom... all these will be just variable of Pizza Builder if we want base +cheese then we will call pizzaBuilder.set(base). set(cheese). If we want base+mushroom then. pizzaBuilder.set(base). set(mushroom). If we want base +cheese. + mushroom then we will call pizzaBuilder.set(base). set(cheese). set(mushroom). Please clarify Thanks!!
@ConceptandCoding
@ConceptandCoding 9 месяцев назад
Ack, I will clarify you (I will post my comment tomm)
@stuti5700
@stuti5700 9 месяцев назад
@@ConceptandCoding please clarify
@ConceptandCoding
@ConceptandCoding 9 месяцев назад
understand the usage of builder pattern: consider this scenario: - you want to create an immutable object (and generally immutable object when created its initialized via constructor and no setter method exist in the class). without builder pattern, you have to write so many constructor which will cause an issue. But With builder pattern, we can easily achieve this by exposing the setter methods in Builder class so that we can achieve step by step construction and at end called the build method, which will call the constructor and pass the builder object. So i would say, when you have to achieve the immutability, then it will help and also increase the readibility. hope this clarifies.
@MOHDSALMAN-sj2zu
@MOHDSALMAN-sj2zu 5 месяцев назад
@@ConceptandCoding Hi Shreyansh, @stuti5700 was asking about why did we choose decorator pattern to create Pizzas where as it can be created using the builder pattern only.
@dhameliyayagnik4236
@dhameliyayagnik4236 Месяц назад
​@@MOHDSALMAN-sj2zu I got your doubt, Let me clarify and if i am wrong please correct me. Using builder pattern you are creating pizza like basePizza + Cheese + Mushroom, but inorder to create such combination of pizza you need to make sure that all these elements are already there in Builder. Now, dynamically you want to add some more toppings which are not in builder then with 2nd principle of SOLID(Open for extension but closed for modification), you can not add more topping to already running(or live) class. But with Decorator patterns, each new topping is a new class which is not violating any principle and that's why for pizza topping example, we use decorator. What i understood: Builder pattern is only for creating a single object but with different kind (or permutation) of properties should be initialized, with creation of object(i.e. permutaions of properties no. of constructor required) then builder pattern is used because in reality we may not use all kind of constructor and we don't know which kind of constructor we need so, we are forced to create and that issue solved by builder pattern. Decorator pattern is used when structural objects(as said in last part of video) or combination of different class kind of object required then it is used.
@parthsalat
@parthsalat 2 месяца назад
Good night? I'm watching this in the morning (as I'm unemployed lol)
@chiveshupneja1593
@chiveshupneja1593 11 месяцев назад
Hi Shreyansh, Thanks for such a great content. Someone asked me in an interview Why to use Builder Pattern, I can create an object by Default Constructor and then I can call corresponding setter methods. Can you please put light on concept behind this. Once Again Thanks to you for such a wonderful content!!!
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
Hi, as far as i remember, i have explained this on video buddy, let me recollect, the problem is when we have to create object with different different parameters, and having so many constructor is not right. That's what builder pattern solves the issue.
@chiveshupneja1593
@chiveshupneja1593 11 месяцев назад
@@ConceptandCoding that's fine, but here the question is am creating an object with default constructor then using setters I am setting the values. In builder also we have to select the corresponding field methods same way we are using setters. like Student student= new Student(); student.setName() student.setAge() whatever data fields you need you can specify setters
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
Okay, consider this scenario: - you want to create an immutable object (and generally immutable object when created its initialized via constructor and no setter method exist in the class). without builder pattern, you have to write so many constructor which will cause an issue. But With builder pattern, we can easily achieve this by exposing the setter methods in Builder class so that we can achieve step by step construction and at end called the build method, will will call the constructor and pass the builder object. So i would say, when you have to achieve the immutability, then it will help and also increase the readibility. hope this clarifies.
@chiveshupneja1593
@chiveshupneja1593 11 месяцев назад
@@ConceptandCoding yes, got it. Thankyou!!
@ishangupta8065
@ishangupta8065 8 месяцев назад
​@@chiveshupneja1593 + It is not usually a good practice to return the object with not everything initialized the way you need it to be. If you are just doing it for the small project it makes sense, but think about a bigger system where only you are not in control of creating and calling set methods. In many cases set methods call can be missed and lead to bugs. This pattern ensures everything gets done neatly.
@saurabhtiwari9614
@saurabhtiwari9614 Год назад
Bhayiya please ek video concurrency ke upar bhi. How to tackle concurrency problems.
@ConceptandCoding
@ConceptandCoding Год назад
Sure
@rahulsharma15
@rahulsharma15 Год назад
Most important one 🕜🕜 Thanks for uploading this one
@ConceptandCoding
@ConceptandCoding Год назад
Thanks Rahul
@akshinaxmedov3823
@akshinaxmedov3823 5 дней назад
But please keep going to make lessons in English as well
@ayushiagarwal2306
@ayushiagarwal2306 6 месяцев назад
Hi Shreyansh! Could you explain how will client pass student details to director?
@ketanlalcheta4558
@ketanlalcheta4558 Год назад
No doubt about content of this channel. It's super cool . But I will be honest on this video that I got confused. 1. Why student director is added ? If it is not important, doesn't it mean this example is not a good fit for builder ? 2. Currently director just sets random value to parameters (member variable) and if it has to be user input how to do this. Mostly this all are not hardcode values but user input. If those are user input and need to set it to class meber, what is fun of passing it first to student builder and then student? If problem is not observed by passing user input to strudent builder class, why not to pass to student class directly.
@ConceptandCoding
@ConceptandCoding Год назад
Hi Ketan, sorry to hear that you got confused with explanation. Let me try to elaborate: - Director work to make Client less bulky, so certain business logic of creating objects like multiple methods invocation (as i mentioned it's a step by step creation of object) can be kept at Director. And client just simply say, createObject. - Directly working on Student object, will make things messy, if there are less say 20 types of students you have to create (engineer, MBA, school, CA, CS students etc) And each of these 20 types of students have certain unique implementation in their method like subjects, admission process etc. Then who will keep those logic. Builder is the right place for that. But let me know, if Live LLD session is Rey, this weekend i will keep one.
@ketanlalcheta4558
@ketanlalcheta4558 Год назад
@@ConceptandCoding thanks for response. I am sorry but I am yet not able to understand how builder in student class helps here. If client need to pass user input to the builder , let it directly passed to the student. There might be problem and benifit and i am not able to capture it. Would you please share (if possible ) a source code link which takes care of student data as user input and builder helps to ease it? May be that will make it clear for me. Right now i am having feeling that client sets user input to builder which can directly be set to student as both class have same data members.
@prashantmeena6137
@prashantmeena6137 11 месяцев назад
@@ConceptandCoding The director class in this method seems pure hardcoding, and the reasoning of "Director work to make Client less bulky" seems like an explaination of factory class
@dhvanilvadher1356
@dhvanilvadher1356 5 месяцев назад
I have one doubt, Why can't we use the dummy class itself to make a builder, public class Student{ int rollno string firstName string lastName Student(int rollNo){ this.rollNo = rollNo } Student withFirstName(String firstName){ this.firstName = firstName; return this; } } making student like below, Student student = new Student(1).withFirstName("abcd").withLastName("pqrs");
@AdarshMishra-b2g
@AdarshMishra-b2g 13 дней назад
Hii, Do we really need 2 different pizza builder classes for 2 different combination of pizza's? like can't we have setter methods for each toppings in a single builder class and then from Director ,call corresponding combination of setter methods and then build() for getting corresponding pizza's? although i got it that if a new topping request comes which does not exist already, then we will be voilating open/closed principal if we are using builder pattern for this cause.
@tanmaypandey8856
@tanmaypandey8856 3 месяца назад
Could you please make videos for designing DB also for multiple cases. Thanks in advance.
@ConceptandCoding
@ConceptandCoding 3 месяца назад
noted
@kartikpawde8582
@kartikpawde8582 4 месяца назад
Hi SHREYANSH, rather than checking instance of builder object in Director.method. We can also Extend directors to MbaDirector, BcaDirector. What are your thoughts on this one. is that because in future we are not planning to add additional functionality to directors based on builder...and we only need director to initialize builder, so we are using on 1 Director, am I right?
@mounikaallagadda5946
@mounikaallagadda5946 8 месяцев назад
Why can't we have a constructor with all fields, but pass only required values and remaining just null?
@ayushgoyal423
@ayushgoyal423 6 месяцев назад
assume a class with 30-40 fields. Having a constructor this big is in itself not practical. Moreover everytime you create an object, of the class, you have to pass all 30-40 arguments into the constructor, irrespective of them being null or otherwise.
@CenteredCircles
@CenteredCircles 11 месяцев назад
Why just we don't create setter methods in Student Class itself for all the optional attributes and create a constructor with all mandatory attributes. If we do that then we won't need a separate builder class. What do you think?
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
Okay, consider this scenario: - you want to create an immutable object (and generally immutable object when created its initialized via constructor and no setter method exist in the class). without builder pattern, you have to write so many constructor which will cause an issue. But With builder pattern, we can easily achieve this by exposing the setter methods in Builder class so that we can achieve step by step construction and at end called the build method, will will call the constructor and pass the builder object. So i would say, when you have to achieve the immutability, then it will help and also increase the readibility. hope this clarifies.
@learnwithme7750
@learnwithme7750 6 месяцев назад
Hi Shrayansh We can also add property step by step of Student in student class only by making setter methods for each property....so why did we make different class like StudentBuilder?
@ConceptandCoding
@ConceptandCoding 6 месяцев назад
yes you can, but main advantages of builder pattern are: - readability and maintainability - Creation of immutable objects
@learnwithme7750
@learnwithme7750 6 месяцев назад
oh, thanks@@ConceptandCoding
@abhishekpattnaik8531
@abhishekpattnaik8531 Год назад
Hi @Concept&&Coding , these videos are good but can you please share any books or other resources which might help in addition to these videos.
@ConceptandCoding
@ConceptandCoding Год назад
For design patterns, you can follow "head first design pattern" else there is no book for LLD, its just an experience learning
@yogeshshukla6097
@yogeshshukla6097 5 месяцев назад
isn't @builder that we use on models a shorter way to implement builder pattern ??
@suheabkhan2546
@suheabkhan2546 Год назад
One note link ? Good video on builder design pattern
@ConceptandCoding
@ConceptandCoding Год назад
Thanks will share
@mayuripatil5530
@mayuripatil5530 10 месяцев назад
Why Can't we pay using UPI. Is card mandatory for joining.
@ConceptandCoding
@ConceptandCoding 10 месяцев назад
It's RU-vid which shows different payment methods. I have no control over it Mayuri.
@harshittrivedi1
@harshittrivedi1 Год назад
Hi sir, Thank You For video. I have one doubt, can't we have Student object in StudentBuilder it self? It'll remove duplication right?
@ConceptandCoding
@ConceptandCoding Год назад
Hi Harshit, if you add Student inside Student builder, then getter and setter would be getStudent and setStudent. Or You will have to write all setters and getters by looking at Student class and expose it in builder. What if new field introduced in Student, then whether you have to write it's getter or setter method in builder class or not. If builder class has those fiels, i think it become easy, all the fields which are in builder class we can create getter and setter for them easily. That's my take.
@harshittrivedi1
@harshittrivedi1 Год назад
@@ConceptandCoding ok sir got it thank yoy
@khushboopriya9895
@khushboopriya9895 4 месяца назад
cant see gitlab link, i am a member too
@mmmm-wm8ci
@mmmm-wm8ci Год назад
Hi can you cover ddd and clean architecture
@ConceptandCoding
@ConceptandCoding Год назад
Sure
@AJ-dd3ln
@AJ-dd3ln Год назад
isn't factory design pattern also used here ?
@habib3023
@habib3023 Год назад
gitlab link is not working. Please give the latest link
@ConceptandCoding
@ConceptandCoding Год назад
I just now checked, it's working, check the description, i have provided the link there gitlab.com/shrayansh8/interviewcodingpractise/-/tree/main/src/LowLevelDesign/DesignPatterns/BuilderDesignPattern
@gurnoorsingh2954
@gurnoorsingh2954 Год назад
@@ConceptandCoding Can you please explain how will this solve the problem if we want to take user input?
@tvb4026
@tvb4026 11 месяцев назад
Thats why we call JAVA a fucked up language in other language optional fields not need to be passed
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
i think you mixed the API optional parameter with method parameter. in java also for api optional parameter, its not mandatory to pass. but pls let me know, if is misunderstood your comment.
@tvb4026
@tvb4026 11 месяцев назад
@@ConceptandCoding I am taking about optional parameter like int? number which is not supported in java method. In java it is mandatory to pass arguments if defined in method or do method overloading
@mrprime557
@mrprime557 Год назад
ur awesome bro... ily
@ConceptandCoding
@ConceptandCoding Год назад
Thank you ❤️
Далее
НЕ БУДИТЕ КОТЯТ#cat
00:21
Просмотров 1,2 млн
КОТЯТА НАУЧИЛИСЬ ГОВОРИТЬ#cat
00:13
Master the Fluent Builder Design Pattern in C#
15:05
Просмотров 27 тыс.