Тёмный

Builder Design Pattern in Java 

Telusko
Подписаться 2,4 млн
Просмотров 225 тыс.
50% 1

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

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 118   
@SushilKumar-wt7js
@SushilKumar-wt7js 4 года назад
I have seen around 6 videos to understand this concept, this is best video which explains this concept in simple and easiest way.......thankssssssssss a lot
@venkateswararaodevisetti8684
@venkateswararaodevisetti8684 6 лет назад
My real time example for this is, I have a table and I have a pojo for that table. This pojo is getting used in multiple projects If a column I'm adding for 1 prj sake I have to change pojo constructor and since we are changing constructor where and all prjs we use this need to be changed or we need to create 2 constructors in pojo So this the best solution here is builder design pattern
@charlessnachez4248
@charlessnachez4248 2 года назад
Thank you man, you got a new subscriber, my teacher couldn't explain this to us, he didn't even mention that this is design pattern.
@anjalat3016
@anjalat3016 4 года назад
Your explanation is very easy to understand Navin. Thanks a lot.Could you please do few videos on other Design Patterns as well.
@shaliniagarwal8925
@shaliniagarwal8925 Год назад
Excellent explanation. I was about to give up on this topic. You explained so clearly - made it so easy !!
@thestarinthesky_
@thestarinthesky_ 3 года назад
You are literally very good at explaining complicated topics by giving simple examples. I have searched the entire online courses out there for weeks and here is the only channel that explains this topic very well. You should make a whole design pattern courses. I would pay for that.
@BadCode_22
@BadCode_22 3 года назад
Agree with this comment
@codespector1989
@codespector1989 2 года назад
finally someone who explained in very simple word , thanks
@saurabhshukla4900
@saurabhshukla4900 4 года назад
Nice and clear example. But builder need not be instantitated everytime. So we can make the builder static.
@sachindixit6605
@sachindixit6605 6 лет назад
Hi Navin, It's a great video, but my question is that, as per your example, what is the need of phone builder, the same can be done with phone class itself, having default constructor and all setter method. Can you please explain.
@saurabhkumar-kh7oz
@saurabhkumar-kh7oz 6 лет назад
Having setters prevents you from ever making your class immutable i.e the value of its parameters cannot change. Also there is no guarantee that an object is stable after a setter method i.e it is possible that an object requires at least 3 parameters to function but your object would still exist even after just 1 setter call. You can ensure that all the required parameters are set when u call the getPhone() or build() method, you can even set some of the parameters as final since you are basically calling the constructor to the class making it immutable. Also it is less verbose than having many setters.
@savelokhosa6846
@savelokhosa6846 Год назад
You are one of the best Navin
@surya5064
@surya5064 3 года назад
How I understood this builder pattern is => for example in your eCommerce application if we search laptop it will show so many results but by using the filter option if u set the ram> 4GB then it will give all the laptops which ur having more than 4 GB ram irrespective of the company.
@Madhavan2020
@Madhavan2020 8 лет назад
Thanks dude, its awesome simplest example to remember.
@EchoVids2u
@EchoVids2u 4 года назад
thanks bro, your tutorials are always so clear and concise
@michelegenchi
@michelegenchi 7 лет назад
Very easy example; now I understand , thanks... I share your video in my linkedln
@VipinRawat_Offcial
@VipinRawat_Offcial 2 года назад
You made design patterns so easy
@unemployedcse3514
@unemployedcse3514 5 месяцев назад
awesome , luv u brother ❤
@viswanathnuggu
@viswanathnuggu 8 лет назад
Thanks, it is helpful! So, here in this example Phone class will have only getters and no setters?
@ayushshukla1597
@ayushshukla1597 3 года назад
Amazing explanation. Thank you.
@anasabdeljalil9883
@anasabdeljalil9883 3 года назад
Good video , but I have a question, what's the need of Phone class after we create phone builder ?! , we can override a toString method in PhoneBulider class and do not use Phone object .
@anonymous_devil3730
@anonymous_devil3730 Год назад
Why not use a non parameterized constructor in Phone class and use setters and getters in main method to pass value. In enterprise application, where we have 20-25 properties in one class and each class internally has 20-30 properties, I don't think this design pattern will work. So is it of any use in enterprise applications??
@raghavilatha
@raghavilatha 4 года назад
Thankyou for your explanation, can you please add remaining design patterns also ?
@travel_bloggerr
@travel_bloggerr Год назад
I didnt get the correct use of builder design patter by adding additional class PhoneBuilder we can also use getter and setter i Phone class itself and use any setter method whichever value its present it will set? Please help to resolve this issue?
@gigajoules6636
@gigajoules6636 4 года назад
Must have missed something here. I assume to set default values we just state them where we declare the variables the object is made up of?
@rajivraghunathan9104
@rajivraghunathan9104 7 лет назад
awesome! simplest ever explanation
@yellowlegend245
@yellowlegend245 6 лет назад
Hi Navin, why are you having same variables in both classes Phone and PhoneBuilder. (Not sure if you noticed). In real world we dont duplicate the data.
@gunasekar925
@gunasekar925 2 года назад
awesome sir
@SushankSaini-g5z
@SushankSaini-g5z Год назад
Thank you.
@manindersingh6371
@manindersingh6371 2 года назад
Hello Sir, Thanks for making the video. I have one question regarding this. We can make one parameter constructor to get the one value like you are doing. Suppose we need to set the price of phone so we can just create a constructor which take price as a parameter and set it. Why we are using the design pattern in this concept?
@thecodeagency2307
@thecodeagency2307 2 года назад
In our case we had just five parameters, so we can create different constructors with varying parameters like first constructor with 5 parameters, second constructor with 4 parameters, like that. But, what if you have large number of parameters it will be so tough to create constructor telescopes. That's why we are using builder patterns.
@manindersingh6371
@manindersingh6371 2 года назад
@@thecodeagency2307 Thank you :)
@fazaljarral2792
@fazaljarral2792 4 года назад
What is different from setters? We could do it with default constructor , then set each value? How is this different?
@saurabhshukla4900
@saurabhshukla4900 4 года назад
Point is you have to make the object immutable. You should not be able to change its value later on. So you cannot expose setters
@ashishstunner
@ashishstunner 4 года назад
simple but effective.
@vyshnavramesh9305
@vyshnavramesh9305 5 лет назад
Builder Pattern vs Setters: (My understanding from googling. Feel free to correct if you find it wrong) There are classes without setters, called "Immutable Classes". They are used in distributed and multi-threaded programs where multiple threads can alter the states of an object. Developers use 'synchronize' to prevent this. But a more convenient approach is to use Immutable classes so that threads can't alter the states via setters. (If states need to be altered a new object is created! This consumes memory which is a cons of Immutable Classes but its worth, compared to the state-altered-havocs) Thus for Immutable Classes, Builder Pattern has to be used instead of setters.
@ThaEquals
@ThaEquals 8 лет назад
Thank you for this! Very helpful!
@munawarabbas1636
@munawarabbas1636 8 лет назад
great effort Bro..... Please CarryON
@nissskygtr
@nissskygtr 6 лет назад
Excellent Explanation !!!! +1
@manohargandham1353
@manohargandham1353 7 лет назад
what is the advantage of having a builder over having setters in Phone class ?
@skullwise
@skullwise 6 лет назад
Good question. If you come across the answer to your question, please let me know.
@skullwise
@skullwise 6 лет назад
Thanks for your response. But I can achieve the same effect by using an empty constructor(Phone phone = new Phone();). Then I can use "setters" to set the required variables, right?
@Keyakina
@Keyakina 6 лет назад
yeah same thought! thats also exactly what he's doing.. i see no point in using this pattern
@skullwise
@skullwise 6 лет назад
One difference by using builder partner over setters is that Builder pattern creates immutable classes while using setters create mutable classes. But this can not be seen as an advantage in all scenarios.
@risteardob2095
@risteardob2095 6 лет назад
The problem is that the explanation of the Builder pattern is not correct. The Director is missing. When you have a Director, who calls the Builder then the client becomes decoupled from the Builder. The goal of the Builder pattern is to simplify creating complex objects. When you don't have a Director it's not really that simple for the client since they need to call all of the setter methods, when you introduce the Director that is not the case. You need to look at the GoF explanation of the Builder pattern.
@movieclimax9328
@movieclimax9328 7 лет назад
great job..thanks
@anitahcu
@anitahcu 3 года назад
thanks
@ronyut1984
@ronyut1984 5 лет назад
Why do all the setters return PhoneBuilder and not void?
@pravendrayadav6200
@pravendrayadav6200 2 года назад
Are we creating 2 objects here for creating just One? 1. When calling new PhoneBuilder() in Main class. 2. When calling new Phone() in PhoneBuilder class.
@shadab5azhar
@shadab5azhar 5 лет назад
where I will get other videos of design Pattern
@gdIndia199
@gdIndia199 2 года назад
Great
@isoplayers
@isoplayers 6 лет назад
Excellent
@dineshkinibailoor340
@dineshkinibailoor340 7 лет назад
why it is showing processor=null, better approach is to provide standard value using default value constructor
@lokesh398
@lokesh398 4 года назад
Can anyone help for me it showing type mismatch when trying to put Phone p = new phonebuilder().setOs("android");
@200564612434
@200564612434 4 года назад
instead of Phone p = new phonebuilder().setOs("android"); you should write it like this Phone p = new phonebuilder().setOs("android").getPhone(); because "p" is a Phone type variable and you are storing a PhoneBuilder object in it thats why it is showing the error
@mdsaquibansari4123
@mdsaquibansari4123 Год назад
your 8 min video carry more weight than rest present in youtube
@MrAdy0207
@MrAdy0207 7 лет назад
I would suggest using Intellij
@UmairAli
@UmairAli 4 года назад
is anyone else getting errors in code or is it just me?
@vasudevparmar8812
@vasudevparmar8812 2 года назад
using Interface this could be done:- public interface Phone { Phone setOs(String os); Phone setBattery(int val); Phone SetScreensize(int size); Phone setProcessor(String processor); Phone setRam(int ram); Phone getPhone(); } public class PhoneBuilder implements Phone{ private String os; private int Battery; private int size; private String processor; private int ram; @Override public Phone setOs(String os) { this.os=os; return this; } @Override public Phone setBattery(int val) { Battery=val; return this; } @Override public Phone SetScreensize(int size) { this.size=size; return this; } @Override public Phone setProcessor(String processor) { this.processor=processor; return this; } @Override public Phone setRam(int ram) { this.ram=ram; return this; } public Phone getPhone() { return this; } public String toString(){ return "Mobile details [ os: "+os+", battery: "+Battery+", screensize: "+size+", processor: "+processor+", ram: "+ram+" ]"; } } public class client { public static void main(String[] args) { Phone p1=new PhoneBuilder().setBattery(3000).setOs("Android").setRam(4).getPhone(); System.out.println(p1); Phone p2=new PhoneBuilder().SetScreensize(12).setBattery(3000).setOs("ios").setRam(8).getPhone(); System.out.println(p2); } }
@SagarSagar-ro3fj
@SagarSagar-ro3fj 6 лет назад
While learning selenium on some knowledge of java i got stuck at Actions class and then Action interface reference was created and was used to call the multiple functions in single line..my brain was working in right direction but stuck against obstacle where my knowledge ended up..i got some hint on google about fluent interface.. design pattern..and then telusko was the first place to learn..thanks for enlightenment!
@ReihaneZekri
@ReihaneZekri 7 лет назад
Great explanation! just one question: why do we need a separate class for Builder pattern? isn't it ok to use the same entity class?
@saravananm2280
@saravananm2280 4 года назад
1)WHY BUILDER DESIGN? The builder design pattern provides a way for us to build complex immutable objects . Immutable objects are those whose attributes can't be changed (they are 'final') which means there is no setters . 2)WHAT IS THE NEED OF CREATING SEPARATE CLASS ? If you put all the methods of PhoneBuilder class in the phone class,that means you are putting all the setters in the Phone class itself . NOTE: Here the class is not a immutable class anymore,Since we added Setters method in Phone class And also you will end up creating Object for the phone class directly in the main() , try to prevent this kind of behaviour , only let a mutable class(PhoneBuilder in this case ) create and return the object of Phone .
@chaitanyajada5430
@chaitanyajada5430 2 года назад
@@saravananm2280 I think without creating a separate class and by using builder class as Innerclass of object and passing builder as input to the object constructor and creating phone object in getPhone method will solve I think, In this way we can avoid creating separate class
@mayanksrkumar16
@mayanksrkumar16 Год назад
Amazing! Explained such a complex topic in such a simple way! Thanks a lot!
@smitj5404
@smitj5404 29 дней назад
aap bhagwan se kam nai ho sir mere lie programming me interested banane se leke aaj tak itni sari chize kyaaa khubsurat tareeke se samjai hai❤❤❤❤ Real superhero, bringing great values in our lives❤️🌼🌼🙏💐
@manjunathkotagi4874
@manjunathkotagi4874 Год назад
Why u r returning this from each setter..? we can create PhoneBuilder builder = new PhoneBuilder(); and use builder.setXXX(); at the end we will be having phone. this is can be done just using simple setters right? how ur example benefits?
@souravkumar1608
@souravkumar1608 8 месяцев назад
Any way, we see here two classes Phone and Phonebuilder containing same entities to avoid redundancy.
@Fer-jf3pl
@Fer-jf3pl 4 года назад
Wow thank you so much. Ur tutorials are always the best
@shivakrishna3069
@shivakrishna3069 11 месяцев назад
How toString() method is called ?
@ronakpurohit750
@ronakpurohit750 Год назад
what is the the participants in this program and class diagram
@vishaldindalkop294
@vishaldindalkop294 26 дней назад
Thank you for the video
@lux27.42
@lux27.42 5 лет назад
da*n, this tutorial seriously easy to understand!! thankyou Mr.Alien..!!
@dipak002
@dipak002 5 лет назад
Welcome back "Aliens", did you called us "Aliens"!!?? and why is that 🤔🤔
@venkateshkarunakaran2212
@venkateshkarunakaran2212 5 лет назад
because he doesn't know us , and when someone isn't known to you , you call them alien.
@vyshnavramesh9305
@vyshnavramesh9305 5 лет назад
@Telusko you should have explained the advantage of Builder Pattern over setters with no-arg constructor. What's the point in such a video if all the viewers are getting confused after watching it? Have been enjoying your videos fora long time, but not anymore. This is how a product/company loose customers. You could have at least gone through the comments.
@niharikakumar1533
@niharikakumar1533 Год назад
Great sir 😊
@brotherandsister9203
@brotherandsister9203 Год назад
Done...
@abhineetsingh6720
@abhineetsingh6720 Год назад
👽👽👽👽👽👽👽👽👽👽
@albindavis3538
@albindavis3538 Год назад
superb
@milad_mo
@milad_mo 2 года назад
Thanks for very useful and understandable explanation
@pukka4140
@pukka4140 4 года назад
Hello Telusko, Since Phone p=new PhoneBuilder().setOS............... at @7:36 2 questions 1. reference var p is going to point 2 objects in heap a new PhoneBuilder() object and new Phone() object? 2. Can we define Phone class instead as an interface and then have PhoneBuilder implements it? That way, no one can create a new instance of an interface? But that wouldn't make sense since we actually need to create Phone() instance but want it to be created by builder class right? So how can we avoid someone creating direct instance of Phone class?
@sahillamba3879
@sahillamba3879 4 года назад
How printing the object gave the values of the Phone attributes? It should not right?
@JavaAll754
@JavaAll754 4 года назад
Is this another way of implementing constructor overloading?
@Corporate_Kida
@Corporate_Kida Год назад
Thankyou so much for making it so simple.👍
@suchitrasrinivas4330
@suchitrasrinivas4330 Год назад
Thank you sir, Very nice explanation.,
@edgarasstasiukaitis3062
@edgarasstasiukaitis3062 4 года назад
Really don't get this why we do so...Isn't it the same as we initial object with default constructor and just use setters to set values for some attributes? Where is benefits for creating Builder class?
@200564612434
@200564612434 4 года назад
@Telusko .... what if i want to pass those values dynamically to the builder class ??? how can i do that ??
@srishamarathe2595
@srishamarathe2595 4 года назад
I don't understand the dislikes LOL, thanx for the video sir, deeply appreciate it.
@aishwaryasrivastava6526
@aishwaryasrivastava6526 4 года назад
please add command design pattern and other design patterns too. thanks
@dinushachathuranga7657
@dinushachathuranga7657 Год назад
Thanks for excellent explanation❤
@ritikas383
@ritikas383 5 лет назад
Why to use Super keyword here? when already this will refer to current class's object?
@tirupatirao7521
@tirupatirao7521 4 года назад
your analogy or examples are simply and good to understand
@enesog
@enesog 8 лет назад
You can use mulltiple conctructors.This will do the same,no ?
@Sumitmaurya070
@Sumitmaurya070 3 года назад
wow sir, i couldnt answer it in mnc interview, now i will not do mistake again due to this vdo
@ymfeijo
@ymfeijo 4 года назад
Very clear and tangible explanation!
@saddamjamali9273
@saddamjamali9273 5 лет назад
Thanks for such clear explanation.
@palashkhatri7820
@palashkhatri7820 7 лет назад
Very Nicely Explained , Got the Concept , Thank You
@tarunseetha
@tarunseetha 6 лет назад
Many thanks sir for sharing this
@rahulkaranjavkar7994
@rahulkaranjavkar7994 5 лет назад
Thanks sir...
@parthpatel3639
@parthpatel3639 7 лет назад
well Explained....Thank You
@kbhardwaj1989
@kbhardwaj1989 5 лет назад
very beautifully explained. Thanks for sharing knowledge.
@spencerdepas4235
@spencerdepas4235 8 лет назад
Nice video.
@SantoshKumar-wh7gb
@SantoshKumar-wh7gb 8 лет назад
awesome example
@rasnarahman3058
@rasnarahman3058 6 лет назад
nice
@goatmatata2798
@goatmatata2798 5 лет назад
thanxx
@mohammedviso2269
@mohammedviso2269 8 лет назад
Thanks
@sarojsahoo8763
@sarojsahoo8763 4 года назад
This is not how Builder Design Pattern works . It should behave like immutable class . We should not provide setter.
@vishnunairv4u
@vishnunairv4u 3 года назад
there is no setters in the phone class. The builder is doing the stuff :)
@bostonlights2749
@bostonlights2749 4 года назад
:)
@leetcodebaby6680
@leetcodebaby6680 5 лет назад
Loved it, truly amazing ! Thanks !
@bharathys7165
@bharathys7165 8 лет назад
Thanks a ton.. !!!
@vyshnavramesh9305
@vyshnavramesh9305 5 лет назад
@Telusko you should have explained the advantage of Builder Pattern over setters with no-arg constructor. What's the point in such a video if all the viewers are getting confused after watching it? Have been enjoying your videos fora long time, but not anymore. This is how a product/company loose customers. You could have at least gone through the comments.
@GauravSingh-ov9mh
@GauravSingh-ov9mh 6 лет назад
What if we need to create a immutable object using builder pattern? Because in this example one of the set method can be called after the object creation and hence can change the state of the object. something like this p.setProcessor() ;
@saurabhkumar-kh7oz
@saurabhkumar-kh7oz 6 лет назад
we can set the parameters in the acutal Phone class as final making it immutable.
@____ayush____
@____ayush____ 11 месяцев назад
@@GauravSingh-ov9mh I believe the state of the object wont be changed after object creation. If we call the any of the set method on phonebuilder object, only that phonebuilder object's value will be changed, not of the phone object. Do try to run this query.
@ehsanhosseini5861
@ehsanhosseini5861 4 года назад
Hi Telusko, Your explanation is really clear with understandable examples. Thank you. I have an interview soon, I wanted to know which design patterns are most important to know for my interview?
Далее
Adapter Design Pattern in Java Theory
3:55
Просмотров 178 тыс.
Prototype Design Pattern in Java
18:30
Просмотров 144 тыс.
ДЕНЬ УЧИТЕЛЯ В ШКОЛЕ
01:00
Просмотров 910 тыс.
Factory Design Pattern in Java
8:50
Просмотров 493 тыс.
Builder Design Pattern in Java Theory
4:55
Просмотров 279 тыс.
Observer Design Pattern in Java
14:34
Просмотров 172 тыс.
Builder Design Pattern Explained in 10 Minutes
10:45
Просмотров 29 тыс.
Builder Design Pattern in Java
12:23
Просмотров 59 тыс.
ДЕНЬ УЧИТЕЛЯ В ШКОЛЕ
01:00
Просмотров 910 тыс.