Тёмный

The Singleton Pattern Explained and Implemented in Java | Creational Design Patterns | Geekific 

Geekific
Подписаться 34 тыс.
Просмотров 103 тыс.
50% 1

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

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 81   
@Salehalanazi-7
@Salehalanazi-7 2 года назад
Damn man. That's a unique teaching ability to explain every reason. Nice.
@geekific
@geekific 2 года назад
Thanks a lot :) Glad it helped!
@snarf45
@snarf45 Год назад
My left ear loved this
@geekific
@geekific Год назад
😂 Check our newest videos, we fixed that!
@DeepikaVerma-m3i
@DeepikaVerma-m3i Год назад
Awesome.....Haven't seen this indepth singleton implementation, mostly people just do a first level of implementation without thinking of the multithreaded environment.
@--36--
@--36-- 2 года назад
Good channel. I started reading Head First Design Pattern, but I think I'm gonna drop it and just learn from you.
@geekific
@geekific 2 года назад
Checking multiple references is not a bad idea, that's what I did when I try to put a video together! I am really glad you found our videos helpful :)
@--36--
@--36-- 2 года назад
@@geekific Gonna watch them all.
@jeromebranchetti6062
@jeromebranchetti6062 6 месяцев назад
Incredibly clear man THANKS
@azizbekkhushvakov2407
@azizbekkhushvakov2407 2 года назад
Great explaining skills, I read many documentation but I completely understood from your video
@geekific
@geekific 2 года назад
Awesome, thank you! Glad it was helpful :)
@EpicGamer-ux1tu
@EpicGamer-ux1tu 4 месяца назад
Thanks for the video, it was really useful.
@SyncEdgeHandle
@SyncEdgeHandle 7 месяцев назад
The only thing I have to say is 'Perfectly Awesome..........'. Thank you!
@Nitionful
@Nitionful Год назад
Very well constructed, step by step explanation. Thank you!
@murad357
@murad357 Год назад
Not sure why you don't have much more views for this video. I don't think anyone explained the multi thread issue in any of the singleton pattern video. Great job and thank you.
@eugenebespalov9471
@eugenebespalov9471 7 месяцев назад
Cool video! It would be dope if you could also explain an alternative approach of making a singleton using enums please. Oh, and numbering the videos would be really beginner-friendly and much appreciated by the viewers!
@geekific
@geekific 7 месяцев назад
Will add it to my list of upcoming videos! Stay Tuned!
@sovngarden
@sovngarden 2 месяца назад
Absolutely love the video although the last third of the video took 90% of my brainpower to keep up
@ukaszkiepas57
@ukaszkiepas57 Год назад
That was giga clear. Tanks buddy
@Sarah-zo2ys
@Sarah-zo2ys 2 года назад
Thank you so much for a well coordinated video!! Kudos to you
@geekific
@geekific 2 года назад
My pleasure :) Glad you liked it!
@ajeethkumarkandasamy5305
@ajeethkumarkandasamy5305 Год назад
Thanks for clear explanation!
@cool_huip_
@cool_huip_ Год назад
Hey man, your videos are super awesome. Thank you so much for the good work
@StratOnFire
@StratOnFire 9 месяцев назад
Thank you so much for making this video. Helped a lot!
@lkke7604
@lkke7604 2 года назад
sick explanation and video
@geekific
@geekific 2 года назад
Thanks! Glad you liked it :)
@ShakeYourNoobs
@ShakeYourNoobs 2 года назад
I just found out about this channel and subscribed to it. Great Job! Although I think your volatile explanation is a bit wrong. I think volatile tells the OS that this variable will always be written/read to/from the RAM instead of the CPU cache memory. So let's dive in the example where we don't have volatile: Thread A enters the synchronized block and checks if instance is null (still haven't started initialization), at the same time thread B checks if instance is null outside the synchronized block and sees the instance to be null. Therefore thread B also tries to enter the synchronized block but will have to wait for thread A. Thread A after a successful initialization will exit the synchronized block and eventually return. But thread B on the other hand, inside the synchronized block will again see the instance to be null (since the instance variable might only be stored in the cache of a different CPU core where thread A was operating, and where thread B can't see), and will initialize it again. This will not be happening if the "instance" variable is declared volatile: Thread A enters the synchronized block and checks if instance is null (still haven't started initialization), at the same time thread B checks if instance is null outside the synchronized block and sees the instance to be null. Therefore thread B also tries to enter the synchronized block but will have to wait for thread A. Thread A after a successful initialization (will write instance to RAM directly instead of the CPU cache) will exit the synchronized block and eventually return. Now thread B, when checking again if the instance is null inside the synchronized block, will see that it is already initialized (since it will read directly from RAM) and will return that value. Correct me if I am wrong
@geekific
@geekific 2 года назад
Thank you for the support! I am afraid you are, it is exactly like I explained in the video, I suggest you watch that part again and if you still have trouble please let me know how can I improve my explanation in the future :) Additionally, feel free to check these references, maybe their approach will be better than mine at explaining the subject: stackoverflow.com/questions/11639746/what-is-the-point-of-making-the-singleton-instance-volatile-while-using-double-l (first answer in this Stack Overflow thread) or en.wikipedia.org/wiki/Double-checked_locking#Usage_in_Java (The part where they explain the "Broken multithreaded version"). Hope this helps! Cheers!
@grzegorzmolin
@grzegorzmolin Год назад
Your videos are so so so good!! Thank You!!
@pointonous2611
@pointonous2611 6 месяцев назад
the best i've seen
@dragosudrea6533
@dragosudrea6533 Год назад
Nicely explained. Thank you!
@oumaymaaouinti6016
@oumaymaaouinti6016 Год назад
Super clear 👏 Thank you !
@Fun9to5
@Fun9to5 4 месяца назад
So with this pattern you can replace a single simple method that instanciate 10 different classes (implementing the same interface/abstract class) in a switch by 10 new creator classes to respect "Open to extension Close to modification" .... That's AMAZING ... What a great idea that's so much better now. LOL
@hassansakr4774
@hassansakr4774 Год назад
You are amazing bro, you nailed it, I will definitely subscribe to such an amazing and valuable content channel, wish you growth and wealth :)
@geekific
@geekific Год назад
I appreciate that! Thanks for the support :)
@artyug4235
@artyug4235 Год назад
thank you so much ,very clear
@savelokhosa6846
@savelokhosa6846 Год назад
That was a great explanation
@madhanchandru5358
@madhanchandru5358 10 дней назад
Why not use a local variable to construct an object and assign it to the static variable later. This way you can avoid using volatile
@jeseniaroberts3574
@jeseniaroberts3574 Год назад
Thank you!
@greglang5748
@greglang5748 10 месяцев назад
Great video. But how to we actually use it now? Should there also be a setter to update the variables?
@christiansailor2880
@christiansailor2880 2 года назад
Excellent
@raghukgtl
@raghukgtl 2 месяца назад
Good explanation , one question if some one calls clone method on the singleton instance , it will create another object right ? do we have to override clone method and return same instance , please explain ?
@bhanuchirutha
@bhanuchirutha 4 месяца назад
OMG wow man
@dumdum-c8w
@dumdum-c8w Месяц назад
What's the music in the beginning?
@rohitmarwaha7363
@rohitmarwaha7363 10 месяцев назад
please explain eager and lazy instantion
@17alienmd
@17alienmd 2 года назад
After instance was initialised, it doesn't matter anymore what String data we pass as parameter to getInstance, it will always return the instance with the data when the method was called the first time. It this really the correct way of doing that?
@geekific
@geekific 2 года назад
Very nice! This video was mainly about the Singleton Pattern that is why I didn't want to delve other details. But what you could do is create a map and store several singletons based on their names, then the single instance would be tied to that name. So, in the most common example if you were using the singleton for DB instances and you were using two of them, you'll have two records in your map! Hope this helps :) Cheers!
@Artoooooor
@Artoooooor Год назад
That's exactly what I thought.
@mikelevitskiy2535
@mikelevitskiy2535 2 года назад
amazing!
@geekific
@geekific 2 года назад
Thank you :)
@ExtinctEngineer
@ExtinctEngineer Год назад
i want a written notes of what ever he said can someone help me?
@tb7377
@tb7377 2 года назад
I think there is one mistake. An additional 'instance =' At the end it says instance = result = new Singleton(data);
@geekific
@geekific 2 года назад
Nope :) This is equivalent to result = new Singleton(data); instance = result; we need to assign the new Singleton created to the instance we have and not just the result being returned or else we will be fetching that result and creating a new instance every time! Cheers!
@tb7377
@tb7377 2 года назад
Oh, good to know. Thanks
@TarekFaham
@TarekFaham Год назад
If the singleton needs to call a web service to fetch the singleton data such as access token, where do you place the logic to invoke the web service? Do you put it inside the singleton class or outside? Please clarify.
@geekific
@geekific Год назад
Depends on what your singleton is. If that's its whole purpose, like a token generator or something then it should go inside.
@kiennguyencong5459
@kiennguyencong5459 Год назад
good
@martingeorgiev999
@martingeorgiev999 Год назад
6:24 I don't get how volatile fixes the problem. It only makes thread B reread the variable from memory when returning it but the variable could still not be fully initialized by thread A.
@geekific
@geekific Год назад
It won't be there!
@martingeorgiev999
@martingeorgiev999 Год назад
@@geekific I am afraid I don't understand what you are referring to, what won't be where?
@geekific
@geekific Год назад
It will not be written to memory until fully initialized
@rburaksaritas
@rburaksaritas 5 месяцев назад
What is the use of "private String data" field here? If i call the getInstance() function with some data string, it will not update the data field of the instance. The first getInstance() call will set the data value and it will never change again. What am I missing?
@rburaksaritas
@rburaksaritas 5 месяцев назад
Nevermind, the question is already asked before and answered well. If anyone thought the same thing: A: Very nice! This video was mainly about the Singleton Pattern that is why I didn't want to delve other details. But what you could do is create a map and store several singletons based on their names, then the single instance would be tied to that name. So, in the most common example if you were using the singleton for DB instances and you were using two of them, you'll have two records in your map! Hope this helps :) Cheers!
@RasiyaDeshmukh
@RasiyaDeshmukh 25 дней назад
So far the best explanation of Singleton pattern I have come across!!
@mgysmt
@mgysmt 2 года назад
Good explanation, but the second if condition is redundant, isn't it?
@geekific
@geekific 2 года назад
Thank you! Basically more than half of the video was dedicated into answering this question. Kindly watch between 3:25 to 7:00. Cheers!
@nirmalgurjar8181
@nirmalgurjar8181 2 года назад
No, it's just to check again if an instance is already created while the current thread was waiting for lock to acquire after the first check, 2nd check will be rarely used as most of times first check will be not null and return from there, double check is just for initialisation if many threads are trying to initialise the instance at the same time.
@FluteVJ
@FluteVJ Год назад
Very nice job. But we can still break this by serialize the object and deserialize it to create a duplicate object. I guess you should have covered that particular scenario on how to overcome that.
@geekific
@geekific Год назад
Thanks for the feedback! Will keep that in mind for future videos! Stay Tuned :)
@nevokrien95
@nevokrien95 Год назад
There is so much stuff there. This feels like it should be solved by just making the whole thing a global atribute.
@baibula
@baibula 8 месяцев назад
Cool, but you should use enum for that.
@hasnatsakib7223
@hasnatsakib7223 Год назад
kichui bujhlam na
@geekific
@geekific Год назад
Please, let us know which parts exactly were not clear so we may try and help in the comments section :)
@ecstasyofgold888
@ecstasyofgold888 Год назад
>country can't have two presidents San Marino has entered the chat
@ukaszkiepas57
@ukaszkiepas57 Год назад
That was giga clear. Tanks buddy
@Ran_cnc_3d
@Ran_cnc_3d Год назад
Thank you!
@tanzir3678
@tanzir3678 Год назад
overwhelmed
@ErikS-
@ErikS- Год назад
"most used pattern" - As far as I know, many programmers call it an anti-pattern...
@geekific
@geekific Год назад
Being an anti-pattern isn't keeping people from using it ;P
@sthitaprajnapriyadarshan1740
@sthitaprajnapriyadarshan1740 3 года назад
Good channel. Helped me a lot. However I would request you to put even more detail to compete with other channels.
@geekific
@geekific 3 года назад
Happy it helped! and thanks for the feedback will take it into consideration in future videos :)
Далее
Это ваши Патрики ?
00:33
Просмотров 30 тыс.
🎙ПЕСНИ ВЖИВУЮ от КВАШЕНОЙ
3:05:21
10 Design Patterns Explained in 10 Minutes
11:04
Просмотров 2,3 млн
Singleton Pattern - Design Patterns (ep 6)
20:09
Просмотров 249 тыс.
Nested If and Switch
37:01
Просмотров 189