Singleton Design Pattern | Implementation with details & code ✌🏻

Поделиться
HTML-код
  • Опубликовано: 4 окт 2024

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

  • @arjungupta250
    @arjungupta250 2 года назад +12

    Thanks a ton Keerti! Such an awesome video including the multithreading handling part which was unexpected, and while learning I enjoyed it throughly. Paused the video in between to like it because this video and this design pattern series deserves it. Looking forward for next videos in the series :D

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

      Thank you so much. Sorry for releasing the rest of the series late but finishing it soon ❤️😇

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

    Thanks a lot, Keerti. I am fresher and was super scared when I first check what it is online, but you made it super simple that even a fresher who barely knows these concepts in detail can understand it. Super happy learning this in such a simple way.

  • @pratikwadekar4981
    @pratikwadekar4981 2 года назад +21

    Hey Keerti, This was really great explanation. Most videos would stop showing the implementation about singleton design pattern. But the fact that you showed how to make them thread safe was a cherry on top. One request though, could you increase the font size or zoom in into your code editor in upcoming videos as it becomes difficult when viewing on phone.

    • @KeertiPurswani
      @KeertiPurswani  2 года назад +6

      Thanks Pratik. Will definitely increase more from next time😇
      Feedback like yours helps me improve in every video❤️😇

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

    To restrict access to the operator=, you can declare it as private in the class definition, as you've already done. However, you should also provide an empty definition for it to make it inaccessible and avoid compilation errors. Here's how you can do it:
    cpp code
    private:
    Logger& operator=(const Logger&) = delete;
    Adding = delete explicitly specifies that the copy assignment operator is deleted and cannot be used. This way, any attempt to use the copy assignment operator will result in a compilation error

  • @AnupTiwari-n3v
    @AnupTiwari-n3v 16 дней назад

    Thanks for the video Keerti. Simple and detailed. Good work!!

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

    I use to always skip the design pattern concepts..but with your videos...its so easy to understand...i look forward to other videos... great work thanks for sharing the knowledge wirh us...😍

  • @RohitRaj-qv5nq
    @RohitRaj-qv5nq 2 года назад +2

    Wonderful explanation Keerti, It is hard to find Oops tutorial in C++ and you have handled it easily. Thanks a lot again.

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

      Thank you so much! Means a lot! Please do share with your friends! ❤️

  • @SugamMaheshwari
    @SugamMaheshwari 5 месяцев назад

    Lovely explanation of double checking before locking for thread-safe single ton logging🔥

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

    Thanks a lot Keerti. This is the most complete video I have seen so far. I like the way you explain "WHY" we need to do it. Really appreciate your work.

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

      Thank you so much! Means a lot! Hoping you like rest of the videos as well! ❤️😇

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

    Once we have checked that loggerInstance==nullptr, why is there a need to check it again, can't we just apply the lock and create a new loggerInstance as we know that it is null?

    • @Aman-pd4bg
      @Aman-pd4bg Месяц назад

      Baat me dum hai

    • @RohitKumar-sb4qc
      @RohitKumar-sb4qc 10 дней назад

      No, that would miss the case when both the threads have gone passed by the first if-condition, they both will eventually access the constructor, though one after the other. That's why the second if-condition is a must too

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

    Keerti awesome work on the video. I do have a suggestion though. It would be great to if you have have those multiple files in the split window so that it is easily to reference and connect while watching the video itself. This is one way to do it, but the idea is to have visibility or maybe use lesser files. I totally understand that this way it is much more modular but I think for watching everything on a single screen helps better.

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

    बहोत अच्छेसे और गहराईसे समझाया.
    फाॅंट का आकार बडा होता पढने मे आसानी होती.
    नलपीटिआर् दो बार चेक हो गया है. जगह और वेग के संबंध मे.

  • @47hriday
    @47hriday 2 года назад +1

    Its best explanation about singleton.Thank You.

  • @RaisShaikh-bs7dh
    @RaisShaikh-bs7dh Год назад

    Thanks Keerti, Such a great video including each smaller things in it. One request if you can give one session on only mutex and semaphore will help us a lot. Thank you so much again for this wonderful session.

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

    Thanks Keerti for such crisp & nice video capturing all the necessary points related to singleton design pattern.
    Really appreciate for posting such videos which helps the entire developer community.

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

      Thank you so much, means a lot! Hoping you will like the new videos as well! 😇

  • @VY-zt3ph
    @VY-zt3ph 2 года назад

    Fantastic video. I came here after hearing your interview experience. I learned MULTITHREADING just to understand this video.

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

      Woah! How awesome is that! ❤️😇

    • @VY-zt3ph
      @VY-zt3ph Год назад

      @@KeertiPurswani Thank you Di

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

    Clearly Visible, Thank You :)
    It complied on first time, on staging code - Truly magical!

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

      Thank you! A lot of effort goes behind every single video! ❤️

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

    Thanks for such a simple explanation!!
    I have one Q. Should I also delete "move constructor" & "move assignment operator" in singleton class?
    If YES or No, explanation would be very helpful.

  • @Ww-ul8oe
    @Ww-ul8oe 2 года назад +1

    Thank you Keerti. Appreciate implementing in c++

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

      Thank you! Please do subscribe and share the video with your friends❤️😇

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

    Very clear explanation with examples. Thanks Kreeti

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

    Mam, please complete the design pattern playlist as fast as possible.

  • @aloklakhotia7251
    @aloklakhotia7251 2 года назад +4

    Great video. Thanks for this. :D
    One doubt: Isn't the inner if condition redundant as the lock is already captured?

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

    In a main method, you can create a singleton class instance before creating a thread. There won't be any contention issue, locking is also not needed.

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

    Hey, thanks for the awesome explanation. Why we need the 2 if check, cant we remove the inner if check?

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

    keerti please do a parallel code for java as well.

  • @JRKrishna-d1e
    @JRKrishna-d1e Год назад

    Thanks Keerti! Very good way of explanation. God bless you.

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

    Thank you ma'am. I have a question. If you null pointer check for loggerInstance on Ln. 21 then do you really think null check required on Ln.24 as well

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

    Thanks Keerthi, this was a very good explanation about singleton

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

    Thanks for these videos. One thing which would help with visibility is if you can show all open code files side by side

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

      But you won’t be able to see the code clearly on screen. I am going to upload all to github pretty soon!

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

    Awesome explanation! but I think you missed to explain why we should go for singleton pattern? I think you mentioned in order to avoid multiple logs in different places? I didn't get that?

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

    goldmine of a video

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

    Please increase the font size when you write code or zoom in a bit. Difficult to read from distance. Thanks

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

    Thank you very much Di, got this from end to end like thread safe and all....
    One doubt why we use .hpp and .cpp files both..... we can't do in .cpp file only, its little bit confusing to me, i haven't code like this in cpp
    And please add more videos.... this Playlist is going to be best on RUclips for LLD and system design 💯💯

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

    Nicely explained. Understood it completely

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

    Are freshers (university grads ) expected to face these questions ?
    Great video btw !!!

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

    Thanks a lot Kreerti! for the wonderful explantion of singleton design pattern.

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

      Thank you! Hope you like other videos on the channel as well! 😇

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

    Thank you Keerti! Really appreciate your work.

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

    Hi sis, your explanation is very clean & good, if u can add more design patterns .It'll be a great help. Thanks.

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

    Thanks Keerti. Very useful.

  • @sammetajhansi8063
    @sammetajhansi8063 27 дней назад

    Thanks Keerthi! Your explanation was very excellent.But I had a doubt.Instead of using header files can't we write all the code in a single file?.Will there be any issues in doing so? Because not everyone can create those header files that easily.I am a fresher basically So I wanted to know if this is the actual convention to be followed or if it is also fine to code everything in a single file.

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

    For Java People, to handle multithreading do below changes in Logger class -
    public static Logger getLogger() {

    if(logger == null) {
    logger = getInstance();
    }
    return logger;
    }
    synchronized public static Logger getInstance(){
    if(logger == null)
    return new Logger();
    else
    return logger;
    }

  • @AnkitaSingh-vv5rc
    @AnkitaSingh-vv5rc 3 месяца назад

    Thankyou so much, Keerti Mam

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

    Finally back ☺️

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

      With many many videos this time❤️😇

  • @j.r.krishna1122
    @j.r.krishna1122 Год назад +1

    You made my day

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

    wonderfull explantion keerti, one doubt -> as explained to use mutex, can we follow this approach
    -> run 1st thread and after that remaining threads -> anyways we are just blocking 2 threads to make instances for the first time and after the instance is created it would not matter how many threads access it

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

    Assuming if we write the code in java ..Can we create object during initialization like below
    public class Singleton {

    private static Singleton singleton=new Singleton();;
    private Singleton()
    {
    super();
    }

    public static Singleton getSingleton()
    {
    return singleton;
    }
    }

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

    You are a great teacher !! Thank You !!

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

    Yar jo wo problem tha like k if Multithreading is in picture then singleton fails or tabhi muje realise hua uska bhi jugad hota hai par ye interview me pucha tha or sch me tabhi realise hua k hmm such a diff pov

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

    Hey Keerti, Really a good video and detailed explanation. Hats off and please continue to contribute.

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

      Thank you so much Ritika, means a lot! More videos coming up soon ❤️😇

  • @2008suryan
    @2008suryan 2 года назад

    Very good clear explanation. Expecting more videos on other design patterns.

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

    AWESOME, Great work!

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

    Thanks Keerthi.. Really great explanation 👏.

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

    Hi Keerthi, thanks a million for the wonderful videos. I have one question in implementation of singleton design pattern.
    "Why do we need to make assignment operator in private. Assignment operator gets called when we try to assign existing object to another already existing object. In other words this gets called only when we have two instances already created which we already prevented from happening by making default and copy constructors private.

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

    Could you please let us know what is the IDE you are using for practice?

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

    Isn't it better to use static class for logger rather than singleton pattern. Some of the useful example can be parking lot

  • @shankarBinnar-xl8en
    @shankarBinnar-xl8en Год назад

    Thanks Keerti for this video..learn singlton design pattern in detailed . can I get your codes on any website ??

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

    Your effort to keep things simple is amazing...Also don't worry no one will steal your logger constructor.😂

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

    wait wait what was that at the last? making constructor private and operator overloading private... as a non C++ coder that hit me like a train

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

    One Request: Please give the direct link to the playlist of design patterns you are covering to check other patterns easily.

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

      There’s a playlist on the channel - Design Patterns
      ruclips.net/p/PLliXPok7ZonlZJuAN0hvUnf5ovFepjxU0
      😇😇

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

    Excellent explaination Keerti!

  • @AshishIkhar-k7b
    @AshishIkhar-k7b Год назад

    Thanks Keerti, can you please record the session on "Smart Pointer"

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

    Hello Keerti,
    Thanks for the video, but this is still not complete. Particularly the ownership of the instance, how the instance will be released/destroyed.
    You can use smart pointer (since C++11)
    But the best would be using Meyer's Singleton that works with C++98 and C++O3 as well

  • @AnkitSingh-lb9fj
    @AnkitSingh-lb9fj 2 года назад

    great stuff as always, waiting for next video on design pattern

  • @vinamrajha1571
    @vinamrajha1571 19 дней назад

    You forgot to return as reference when you overloaded the assignment operator.

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

    Hi Guys.. awesome videos

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

    Superb explanation. ❤

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

      Thank you! Hope you like other videos as well! 😇

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

    nice video but could you make videos using java?

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

    It is really a great session and helpful. Thanks for this. If possible pls increase the font size while explaining codes.

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

      Thanks for the feedback! Hoping it’s better in the present videos! ❤️😇

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

    nice explanation

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

    Thank you for explaining in detail.can you please create GitHub links for the codes specially the design pattern ones

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

    Nice explanation :)
    One doubt: when are we going to delete the resource(loggerInstance) which we have created dynamically using new keyword.

  • @rosansenapati-pl5hr
    @rosansenapati-pl5hr Год назад

    wonderful explanation thank you so much for teaching us

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

      Thank you! Please do share the video with your friends!

    • @rosansenapati-pl5hr
      @rosansenapati-pl5hr Год назад

      @@KeertiPurswani ofcourse I will this is great stuffs and people need to know about your amazing videos

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

    Why have you made 3 files ? logger.hpp , logger.cpp and user.cpp . why cant we directly used logger.hpp in user.cpp ? is there some pattern , folder structuring you have followed ?

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

    after you implement the double checked lock is the inner if condition needed any more? isnt it bound to be TRUE?

  • @ArchanaBiradar-l5h
    @ArchanaBiradar-l5h 11 месяцев назад

    How about RUclips adding search option in comments section.

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

    Thank you so much for this series :)

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

    What if exception is thrown Inside a mutex lock ? It will never ever unlock the mutex and no other thread will be able to enter the critical section or they will keep waiting to mutex to get unlocked that will never happened. So we should use unique_lock or lock_guard i guess 😒😒

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

    Hey Keerti, I tried this on gcc linux terminal. without mutex also it gave single instance all the time.
    spent 15 minutes to figure out what wrong I wrote. but then tried it on online gdb compiler; there it varied then.

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

    You can use semaphore ? Why mutex

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

    Please make the code view bigger. It becomes difficult to read while watching on a phone

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

    Excellent video ...simple explaination 👍

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

      Thank you so much! Please do share with your friends?

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

    Really great explanation!!!

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

    Hi didi ,your videos are just awesome keep making videos like this and motivating us

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

      Thank you! Please keep sharing videos and motivating me! ❤️

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

    If you are writing singleton in C++... Meyers singleton is the standard way of doing this. I guess covering meyers singleton was super important not done.... BTW singletons are anti pattern avoid it

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

    Great Teacher YOU are

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

    When we delete the instance and created new instance 2nd time in main we are unable to delete the instance which we created 2nd time getting double free error

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

    Can we delete the second time nullptr checking as we are already checking it for mtx locking, or that can also cause some problem? just curious, please do reply..

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

    excellent!!, can someone please tell me if this playlist is enough for sde1 interviews?

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

    20:05 can you give me the code for that?
    Will it be something like
    delete Logger operator=(const Logger &)?
    Correct me if I am wrong

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

    awsome explaination

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

    Perfect work

  • @RiyaSingh-nj1fx
    @RiyaSingh-nj1fx 2 года назад

    I have 3 things to say....
    1. How is your armpit...seems like due to pole dance you had some issue.
    2. Nice explaination
    3. How is work at intuit one of my friend joined there and tell me he work day and night and even weekends too.

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

    Great complete Video :)

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

    Why are locks expensive

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

    Can someone explain why we need to have objects of the class at all? why can't getLogger function be static also?

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

    Thanks mam

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

    Can someone help me with VS Code as the thread is not supporting !! Any idea how to resolve that ?

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

    Please provide best resume templates for freshers to apply for tech giant's. It's need of many students

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

    It was really helpful.

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

    Normally front end developer uses js, learning dsa using js is it useful or not ?

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

      Dsa is useful for sure (language doesn’t matter that much - as long as you can solve questions)
      But I do know some front end developers who are doing really well and don’t know dsa much.