SINGLETONS in C++

Sdílet
Vložit
  • čas přidán 1. 08. 2024
  • Go to www.hostinger.com/cherno and use code "cherno" to get up to 91% OFF yearly web hosting plans. Succeed faster!
    Patreon ► / thecherno
    Instagram ► / thecherno
    Twitter ► / thecherno
    Discord ► thecherno.com/discord
    Series Playlist ► thecherno.com/cpp
    This video was sponsored by Hostinger.

Komentáře • 376

  • @TheCherno
    @TheCherno  Před 4 lety +66

    Thanks for watching, hope you enjoyed the video! Don't forget to check out hostinger.com/cherno and use code "cherno" to get up to 91% OFF yearly web hosting plans! ❤

    • @AngelTaylorgang809
      @AngelTaylorgang809 Před 4 lety

      The Cherno make a data structure series bro

    • @vvill-ga
      @vvill-ga Před 4 lety +4

      lmao "up to 91% off"... My price went from $138 to $129...

    • @user-pg8xt3tn1w
      @user-pg8xt3tn1w Před 4 lety

      Can i have an English subtitle to help with my study?

    • @MrTega1975
      @MrTega1975 Před 3 lety

      @The Cherno, can you explain *Dependancy Injection* pattern in C++ ?

    • @sh4ilendra
      @sh4ilendra Před 3 lety

      Please make a most used design pattern related series... much needed..

  • @neerajbute2094
    @neerajbute2094 Před 4 lety +377

    I'd really like more of such design pattern content. Big fan btw, great content.

    • @jefferson5884
      @jefferson5884 Před rokem

      That's a really good topic. I have messed with PHP and have seen patterns like MVC, event driven, modular.. And I'd like to know how it is in C++ world

  • @srijan4622
    @srijan4622 Před 3 lety +35

    There is one important functional difference between a namespace and a singleton class. In a namespace, all of the data is initialized/loaded into memory when the program first starts; this might be undesirable sometimes when we don't want all the data initialized until we actually need it. In contrast, singleton instances are only loaded during the first call to the "Get()" method.

  • @tamasdemjen4242
    @tamasdemjen4242 Před 4 lety +179

    Great content from an experienced developer. I would note that technically there's a little functional difference between static member variables and local static variables. When you moved the static inside the Get() function, you made the initialization order deterministic. Local static variables are initialized the first time control passes through the declaration. This makes it safe to call one singleton from another singleton. Also local static variables are thread-safe beginning with C++11 (except when --fno-threadsafe-statics is used in GCC). Plain old static member variables aren't thread safe, and the undefined initialization order causes a nightmare situation. This is less of an issue with ints and floats, but if a singleton contains a class, like a string, you're in a really big trouble. Especially when you're using one singleton/static from the constructor of another singleton/static, and you have no way of knowing which one gets initialized first, and if you're out of luck. You may be using a variable that hasn't even been constructed or assigned yet. The destruction order is an even bigger mess than the initialization order, so stay away from custom destructors that rely on other statics. The object being destructed may be using an object that has already been destructed earlier.

    • @hsaidinsan6345
      @hsaidinsan6345 Před 4 lety +28

      Tamas Demjen
      We really need people like you in the comments section

    • @LoopinFool
      @LoopinFool Před 4 lety +7

      Actually, the standard guarantees that destruction order will always be the reverse of the construction order, so that's not so horrible.
      Thank you for your comment - it's what I would have written if you hadn't already posted.

    • @Yoyoyo_gamer
      @Yoyoyo_gamer Před 4 lety

      Thanks for your comment, I had not used the first time of Singleton he showed , where he uses Static Member Variables, only with Local Static Variables. Now I know the differences. :D

    • @Bozemoto
      @Bozemoto Před 3 lety +1

      If the statics are for making the variables have file-scope then it can save you some recompilation time when adding or removing data that is no longer part of the interface.

    • @Bozemoto
      @Bozemoto Před 2 lety

      @Ralph Reilly If you add static before a global variable defined in a cpp it goes from being a global to having file scope. As in you can't access it outside the cpp. Means the compiler can rip out the symbol right away instead of waiting for the linker to do it. Moving the private statics in the class definition to the cpp would mean changing them wouldn't change the header at all so would avoid recompilation from header-changes.

  • @Idlecodex
    @Idlecodex Před 4 lety +92

    Yes! Please, do cover more Design Patterns!
    Side question: can you type and talk like that or is that edited? Regards!

  • @sriramiyer9840
    @sriramiyer9840 Před 4 lety +25

    I am so damn happy this series is back. Have been waiting for a c++ video for so long!!

  • @gustavoleite8611
    @gustavoleite8611 Před 4 lety +33

    Cherno, have you considered covering more design patterns in the C++ series? Thanks!

  • @NicolaiSyvertsen
    @NicolaiSyvertsen Před 2 lety +6

    A Log Class is a good example of a singleton. You just need a way to log things so you instantiate the Log singleton and can do Log.warning("something"). Other examples are in plugin architectures where a singleton can act as an API interface. You want to provide a certain class of functionality, then there is a singleton for that and you bind to it by registering handlers etc.

  • @philmarsh3859
    @philmarsh3859 Před 3 lety +5

    One use case for C++ singleton that makes sense to me is the case where you have several classes with a common base class. Each of the derived classes could be a singleton, benefiting from reused code and encapsulation and they're similar enough to where it makes sense to derive them all from a single base virtual class. In this case, the base class takes care of most of the structure - making it reusable. Then the singleton derived classes have just a few minor differences for each of their use cases.

  • @PrinceGupta-jo8lo
    @PrinceGupta-jo8lo Před 4 lety +1

    Thanks cherno for all these videos. I binge watched you whole series almost a week ago so that I can be comfortable with c++ again(even more now). It really helped me to understand c++ codebase of mlpack organization, I even made a PR on it which is almost accepted. Thanks a lot.

  • @xdestyn
    @xdestyn Před 4 lety +6

    Loving the content! Could you possibly do a video on iterators? As far as what they are, how you can use them in a queue/linked list implementation, etc

  • @kashish0007
    @kashish0007 Před 4 lety +23

    Keep it up, i am a student that is c++ geek. I learnt a lot through you.

  • @mikefochtman7164
    @mikefochtman7164 Před rokem +2

    Great Video. First ran across singletons on a Java project (where, as you point out, everything is a class). Since then, used it occasionally if needed to reuse some object that was 'expensive' to create. One was where a lengthy connection to another server database had to be established. Each query on the object was stand-alone, but creation took time. So we created once in a singleton and then all the code could 'get' and 'query' without having to recreate the connection all the time.

  • @eyalpery8470
    @eyalpery8470 Před 4 lety

    This video is exactly what I needed, it helps me think of how to organize my code better.
    Would love to see more design pattern videos!

  • @rcookie5128
    @rcookie5128 Před 4 lety

    Already knew about singletons, but super helpful that I learned how to circumvent the cumbersome declaration of the static instance in the translation unit.

  • @Mauritz5
    @Mauritz5 Před 4 lety +52

    YAY! More C++ :)

  • @legasa6343
    @legasa6343 Před 4 lety +2

    Thank you The cherno. This is great, just what I need. I wish you can look at more design patterns in future, I mean yuo realyy explain in a way that makes it easy to understand.

  • @TimeFadesMemoryLasts
    @TimeFadesMemoryLasts Před 4 lety +1

    Thank you so much! Your videos are so good. Thanks to you I learned some little details that are important to know about C++. I would love to see more on idioms. The only idiom everyone seems to use for tutorials is the pimpl idiom.

  • @adamjcasey
    @adamjcasey Před 2 lety +15

    This is HUGE in embedded programming because we have to often interface with C libraries. The singleton pattern allows us to interface with C callbacks but still use dependency injection for unit test.
    I love your videos. You are doing this right. C++ is the best language ever made and you are making this accessible

    • @dexam1234
      @dexam1234 Před 9 měsíci

      thanks for this comment!

  • @essmunson
    @essmunson Před rokem +5

    more design patterns please!! you're by far the best C++ teacher on yt

  • @Goras147
    @Goras147 Před 2 měsíci +1

    Me and my friend had to give a 40 minute presentation about the Design Pattern, specifically using C++ as well.
    Singletons are, from what we've seen most of the time disliked and sometimes treated as an anti-pattern even. Now, Singletons do have their limited uses, so there's that. But how to construct one and especially how to destruct one or worse, doing that AND being in concurrent environment, that is a real piece of work.
    What Cherno did in construction was a Meyers Singleton, i.e. the local static one. There's also the way of allocating the singleton on a heap and checking if the pointer is null and if so, creating the Singleton, otherwise just returning the pointer as a reference.
    Threading usually involves something like double checked locking (you don't want to construct two singletons, that'd defeat their purpose) or something that ensures a single call of the constructor.
    Destruction is pretty funny too - you can either ignore possible problems or think of the Keyboard-Display-Logger problem and think of the Phoenix Singleton (where you basically remake the Singleton anew) or the Longevity Singleton, which requires a lot more work.
    If someone has a need to know more about Singletons, I recommend Modern Design Patterns in C++ or the original Design Patterns by GoF.
    Tbh, once we did that presentation, I started to see Singletons a lot more. E.g. my browser uses files to lock the processes and guess what, that's a Singleton. Never seen it before the presentation.

    • @axelBr1
      @axelBr1 Před 17 dny

      I've seen a lot of hate towards Singletons, and never really understood why. I'm a self taught C++ programmer and I use C++ to automate my work as an engineer, which involves a lot of data processing, e.g. sucking in a lot of data files and extracting data etc. So for example, for each kind of data file I have to read I will create a class to handle doing it, and rather than everything that Cherno just described I create a class, sometimes the Constructor is empty and sometimes data needs to be passed. But it's a lot easier than everything described in this video. And I don't see any way around it for the work I do.

    • @abuDA-bt6ei
      @abuDA-bt6ei Před 2 dny +1

      @@axelBr1 Singletons are hated by pure OOP devs who suck off big bob and his clean code principles. While anyone outside of the OOP cult know that clean code is in itself an anti pattern that creates extreme bloat and complexity with its constant abstraction and FactoryFactoryFactories. Singletons remove all that bloat and complexity so the SOLID fanboys hate it.

    • @axelBr1
      @axelBr1 Před dnem

      @@abuDA-bt6ei Thanks!
      I've also being doing away with all the getters in my code and just making the variable public. If you want to F about with a variable then that's your problem. But filling the .hpp file with lots of .get... I don't think helps

  • @jared0801
    @jared0801 Před 3 lety

    Glad to hear you say you're just getting started! Can't wait!

  • @rudragouda5762
    @rudragouda5762 Před 4 lety

    I really like your explanation very much, the way you construct the solution makes things more easy, Please add video on all the other class Design Patterns

  • @drakejohnson3803
    @drakejohnson3803 Před 4 lety

    Good theoretical explanation while keeping it simple. Plus, a relevant example. Great video!

  • @caliphsystem
    @caliphsystem Před 2 lety

    You C++ classes are simply brilliant. Thank you.

  • @Zatmos
    @Zatmos Před 4 lety

    I recently used a singleton for a SDL wrapper. I wrote an initializer class in the protected field of the window class with a static instance of that initializer such that once the user instantiate a window, it will initialize SDL automatically in the constructor of the static initializer object and de-initialize it at the end of the main in the destructor of the initializer.
    I've not yet used singletons in other ways than the one I described and I simply don't use them that much.

  • @kitgary
    @kitgary Před 4 lety

    Excellent! I finally find some useful C++ tutorial on CZcams! Thanks!

  • @wz5445
    @wz5445 Před 3 lety +2

    Love this series, more design patterns please!!!!

  • @stke1982
    @stke1982 Před 3 lety +1

    You forgot to mention the most important thing.
    It's a antipattern and should not be used except few rare exceptions.
    It adds hidden dependencies into the whole codebase, makes unit testing harder and causes lots of pain and costs few years later.

    • @xFlRSTx
      @xFlRSTx Před 2 lety

      sometimes it can make unit testing easier, because you can make your singleton inherit an interface and then use a mock instance for testing other stuff rather than the real singleton, actually anytime you want an essentially static module but you need it to inherit something then you basically need to make a singleton, i think thats the only time i can think of where it would be useful.

  • @kristystrives6979
    @kristystrives6979 Před 3 lety +1

    I love your video. Some explanations (e.g. the linkedin explanation ) are confusing because they use complicated classes as their demo. I really liked how you didn't bother making a working random generator function and focused on singletons!

  • @brunooliveirasoares7489
    @brunooliveirasoares7489 Před 4 lety +3

    I'm bagging you: more design patterns!
    great video!

  • @sameerppradhan
    @sameerppradhan Před 2 lety

    Would definitely to see some other design patterns video. Love your style of teaching and examples.

  • @gmc254quads6
    @gmc254quads6 Před 4 lety +2

    Dare I say, your playlist of C++ videos are the best in the universe so far, youtube aside. I can not thank you enough. If I had the financial ability, Id definitely join the patreon group, not for the extra access but just to show my support for the greatest C++ videos on the net. Who knows, maybe I will get there soon.

  • @chrisstone-streetlightinte5629

    I particularly would like to see a video on the Command pattern, since I've been told its useful for game dev.

    • @SPL1NTER_SE
      @SPL1NTER_SE Před 4 lety

      I agree, of course there are other resources for that, but I really like the way Yan explains things!

  • @ramijaziri8734
    @ramijaziri8734 Před 2 lety +2

    Thanks for your great videos, can you please make a tutorial about DESIGN PATTERNS

  • @tolkienfan1972
    @tolkienfan1972 Před 2 lety

    Note: function local static variables (depending on implementation) can have guards for thread safety, which make accesses take longer. This can be particularly problematic when it's a pointer because of the dependency stall.

  • @lexverheem9109
    @lexverheem9109 Před 2 lety

    Please do more design patterns! Your content is great and your explanation is very clear and elaborate!!

  • @TNothingFree
    @TNothingFree Před 2 lety +1

    We use a lot of static function variables in methods especially for fixes that should not break ABI (Introducing variables or reordering may break ABI).
    The best advantage from this approach is the guarantee for MT safety when initialization the variable - either better if the variable is a class.
    Something you didn't mention (Or I missed it) is MT thread safety which is the crucial point for singleton initialization.
    (Refers to the famous double-if-lock pattern).

  • @AndreasAn
    @AndreasAn Před 4 měsíci

    This was pretty useful and easy to understand. Thank you!

  • @priyadarshini.d4980
    @priyadarshini.d4980 Před 2 lety

    Hey Cherno.. Great content and well explained. Expecting more videos on other design patterns as well..!!

  • @evangcharles
    @evangcharles Před 4 lety +2

    I used them in ue4 as a game audio programmer and found them to be tricky to work with. The engine instantiates the Singleton as expected but tweaks to the Singleton data doesn't show until the entire engine is rerun. That makes iterating on designs a lengthy trial. Otherwise it's a handy way to get your world actors to survive between map transitions.

  • @TheMaxanas
    @TheMaxanas Před 4 lety

    That's fantastic! Thank you a lot! More Patterns please

  • @mohammedyasser4717
    @mohammedyasser4717 Před 4 lety +1

    loved the video. Please make more Design pattern tutorials like observer pattern, Factory pattern, the decorator pattern etc.

  • @osadniasod223
    @osadniasod223 Před 3 lety

    Cherno you saved my life with this video (again) thx for the great tutorial

  • @fixpontt
    @fixpontt Před 4 lety +14

    this is called Meyer's singleton and after c++11 it is thread safe too, but has an overhead cost of the Get functuion because of the internal locking mechanism

    • @rblackmore1445
      @rblackmore1445 Před 4 lety

      everything with locking has overhead

    • @fixpontt
      @fixpontt Před 4 lety +1

      @@rblackmore1445 yeah but it is not obvious that there is a locking in this code and it was not before c++11, it was added to the standard later, as Meyers states:
      - Static function objects are initialized when control flow hits the function for the first time.
      - The lifetime of function static variables begins the first time the program flow encounters the declaration and ends at program termination.
      - If control enters the declaration concurrently while the variable is being initialized, the concurrent execution shall wait for completion of the initialization.

    • @jimfcarroll
      @jimfcarroll Před 4 lety

      @@rblackmore1445 With the right memory model (which C++ didn't have as part of the language spec pre-C++11 though may now, I'm not sure), you can construct a safe "double checked" locking scheme that really doesn't suffer much.

  • @lKyoto
    @lKyoto Před 4 lety +13

    Les goooooo. Hell yeah, more c++ content. 🔥🔥

  • @ShivamJha00
    @ShivamJha00 Před 4 lety

    Very very informational. Thank you

  • @patrickwildschut5750
    @patrickwildschut5750 Před 4 lety

    Great video, loved it

  • @telnobynoyator_6183
    @telnobynoyator_6183 Před 2 lety

    I think a big advantage of singletons is that you can put init code in the constructor and not worry about calling it manually. Advantage or disadvantage, depending on if the init code relies on some other singleton that may or may not have been initialized

  • @dnd3347
    @dnd3347 Před 4 lety

    Thanks for creating such informative videos. If possible please also tell us an efficient way to create singleton class with arguments and correct way to incorporate smart pointers in it.

  • @abdullahhejazi
    @abdullahhejazi Před 3 lety

    Great vid,
    One of my use cases for Singlton in real life is database connection,
    for every request you get, it's better to establish 1 connection to the database, and use it throughout the code, instead of re-establishing connection for every query which will slow down your app.

  • @BookWormsOriginal
    @BookWormsOriginal Před 4 lety

    Thank you a lot for the great content. Please don't stop making such great videos. I will certainly contribute to your Patreon account once I start a full-time job.

  • @sasoyu8922
    @sasoyu8922 Před 4 lety +21

    More c++ ep please!

  • @johnnygood7997
    @johnnygood7997 Před 4 lety

    We need more of this

  • @VictorOrdu
    @VictorOrdu Před 4 lety

    Another great video. Thanks!

  • @glee21012
    @glee21012 Před 4 lety +1

    I make the pointer static and initialize that to NULL. The get_instance method checks the static pointer for NULL and will instantiate it if NULL, so one instance.

  • @ultimatesoup
    @ultimatesoup Před 10 měsíci

    In general singletons have some overhead for the function calls and initialization when you need to access. In addition, it's hard to reason about initialization and shutdown order so I completely avoid them in my engine. Instead I have a class that contains static instances of all the engine components. I can explicitly control startup and shutdown this way. It's not perfect though as c++ guarantees initialization before access in multithreaded environments, however, I've found that even with this performance cost, it's about 50% faster than using singletons

  • @buddhasarchive8385
    @buddhasarchive8385 Před 4 lety

    thank you very much for making these great videos

  • @AM-qx3bq
    @AM-qx3bq Před 4 lety

    YES. EDUCATIONAL C++. MORE OF THIS PLEASE.

  • @debkr
    @debkr Před 2 lety

    The indirection is a great idea. I have never thought of it like this 👍

  • @dandonahue1403
    @dandonahue1403 Před 4 lety +1

    FWIW, Singeltons are used quite a bit in embedded designs to control access to hardware.

  • @mehuldevganiya1049
    @mehuldevganiya1049 Před 3 lety

    Best learning. Please make such videos on as much Design patterns as possible to implement in C++. Awaiting

  • @jnwms
    @jnwms Před 2 lety +3

    Although useful for begginers Singletons are an anti-pattern and end up coupling your code and make it difficult to test. Try creating an IoC (inversion of control), which is basically an object you inject into a constructor that has single references to you global objects. A framework that uses reflection to do this is super useful.

    • @miko007
      @miko007 Před rokem +1

      this. global state is just bad.

  • @austinfritzke9305
    @austinfritzke9305 Před 4 lety

    Best C++ tutorials on the internet. Hostinger better be giving you some good money.

  • @TheGenZProgrammer
    @TheGenZProgrammer Před 4 lety +55

    OMG, You're even married, Lol, Its been 7 years man, since I followed your channel and waited for you to release more videos, CZcams recommendations have brought us back together lol.

    • @TheGenZProgrammer
      @TheGenZProgrammer Před 4 lety +4

      @morph611 Lol

    • @nobir98
      @nobir98 Před 4 lety +3

      Hahaha lol
      I've noticed that too his married that's for sure 😄

  • @EmbeddedSorcery
    @EmbeddedSorcery Před 4 lety +3

    So I'm kind of learning the business at work, being introduced to embedded programming (from being a tech previously), and we commonly use classes for single instance objects... because it's embedded code on an MCU and there's no reason to have more of something like a Hardware class. The hardware class usually initializes a microcontroller and stuff. We do something like this to override the new operator:
    template
    T* static_allocate( void )
    {
    static type Object[ (sizeof( T ) + sizeof( type ) - 1U ) / sizeof( type ) ];
    return reinterpret_cast( &Object[ 0U ] );
    };
    Then a class can be instantiated statically in memory with "new Hardware;" which will have a bunch of init functions in the constructor.
    Hardware( void );
    virtual ~Hardware( void ) { }
    void* operator new( size_t ) { return static_allocate ( ); }
    void operator delete( void * ) { }
    I'd be really curious to see what your thoughts are on something like this. Is there any point in doing this and not using a namespace?
    Functions are called in the application layer sometimes from the Hardware class, but it's really just a global instance this way...
    something like " Hardware::uart_print("Hello"); "

  • @whythosenames
    @whythosenames Před 4 lety +1

    I use singletons just if you must be able to reinit the object, for example restarting a server etc. Then you can just reassign the object and don't have to worry about those variables

  • @buddhasarchive8385
    @buddhasarchive8385 Před 4 lety

    yes. please make more such videos

  • @CreativeSteve69
    @CreativeSteve69 Před 4 lety +1

    hey Chemo been following ya since I got a interest on game devolopment past 5 years. recently been doing turotials on learning gamedev with c++ n defently looking forward to more content to advance my learning. :)

  • @sudheerinbloom
    @sudheerinbloom Před 4 lety

    Superb, Superb , Superb.. Nicely explained..

  • @footballCartoon91
    @footballCartoon91 Před 2 lety +1

    1. create a private object inside a class..(mark it as static -> meaning that object is specific to an object //not shared with other objects)
    2. mark constructor as private
    3. make a public function to access that private object(return type is pass by reference because to refer an object that already being created not making a copy of it)

    • @footballCartoon91
      @footballCartoon91 Před 2 lety

      even though we declared constructor as private, there are still a default public copy constructor created by the compiler..so need to delete that too

    • @footballCartoon91
      @footballCartoon91 Před 2 lety

      @12:55 can be assigned to a another reference object/variable like so
      auto& reference=Random::Get().Float();

  • @Flinsch77
    @Flinsch77 Před 2 lety

    What I missed in your video is the ability to control when the singleton instance is deleted again. This can be important, for example, when analyzing memory leaks. Without explicit control, the singleton instance is only deleted "too late", so that it is always detected as memory leak (provided that the singleton instance allocates dynamic memory, which of course is rather irrelevant for the random number generator from your example).

  • @Astfresser
    @Astfresser Před 3 lety

    in short:
    - declare a class with a public Get()-function, a private constructor and define the static singleton instance somewhere
    - exec functions with Singleton::Get().function() OR alias Singleton first with Singleton& instance = Singleton::Get() and then use alias to call functions: instance.function()
    - don't forget to delete the copy constructor: Singleton(const Singleton&) = delete;
    you can also put the instantiating part into the Get() function of the class, as static variables will not be instantiated twice.

  • @lorandattilaszasz359
    @lorandattilaszasz359 Před 4 lety

    Thank you very much, you helped me a lot 😉😊

  • @tomhyhlik1788
    @tomhyhlik1788 Před 4 lety

    Very well explained, do more design pattern videos please

  • @federicoalbesa3748
    @federicoalbesa3748 Před 3 lety

    The very best video i'd seen. 🤯 Thanks for all

  • @alvaroir
    @alvaroir Před 4 lety

    You are the real MVP man 💪🏻

  • @anuragparothia7996
    @anuragparothia7996 Před 3 lety

    This is the best C++ playlist on CZcams, Hope i know it earlier, but i think some topics are missing.

  • @TheNovakon
    @TheNovakon Před 2 lety

    Singleton as class allows "optional singletons", so I can have singleton, but i can benefit to able create a new standalone instance for some special purpose. Singletons as class can also extend some interface.
    Putting instance to static variable outside of function Get is slightly faster, then having it inside of the function Get because every-time the Get() it called, it must ask, whether the instance is already initialized. There is also some locking protocol to ensure MT safety. This doesn't applied to outside variable. However there is also benefit to having the static variable inside of the function. If the singleton is never used, it is also never initialized, which can help with performance in the such case.

  • @stefanhedman
    @stefanhedman Před 4 lety +18

    Good video! Only thing I missed is the downsides of the singleton pattern. For example, they are pretty much untestable in unit tests. And then there is threading issues. Also, the initialization order fiasco. In my opinion, this pattern has so many issues and too few benefits to balance it out.

    • @adamjcasey
      @adamjcasey Před 2 lety

      Well designed singletons are very testable! What do you mean?

    • @miko007
      @miko007 Před rokem

      @@adamjcasey how do you test a function that make use of your singleton in an environment where your singleton is not present?
      say you have that classical database singleton. while unit testing, you most likely want to swap your database connection with some sort of mock, which would be pretty easy with dependency injection, but is impossible with a singleton.
      a singleton is global state. global state is evil. it is untestable in unit tests.

  • @maheshhegde7332
    @maheshhegde7332 Před 3 lety

    Please add seperate playlist and videos exclusively explaining design patterns in depth

  • @pawelpow
    @pawelpow Před 3 lety

    I just made a tic tac toe c++ game and my main downside was that I had to call “TicTacToe main;” at the beginning of the file. I went on CZcams and this is the first thing I saw! Thanks man!

    • @pawelpow
      @pawelpow Před 3 lety

      I made it using Object oriented programming by the way, hence the reason why I had to declare the instance

  • @learningbees9499
    @learningbees9499 Před 3 lety +1

    Hey, Nice content. Could you please cover all other design patterns as well

  • @ciganyhipervandor132
    @ciganyhipervandor132 Před 11 měsíci

    So singletons are basically the overcomplicated version of namespaces with public and private sections (yes, I know there is no pub, and priv sections for namspaces)...

  • @user-eo5bh2zg2
    @user-eo5bh2zg2 Před 3 lety

    I use a singleton for my data provider where I have to keep track of every request sent within a certain timeframe regardless of originating class

  • @Tairun1st
    @Tairun1st Před 2 lety

    Thanks for the video 🤩Question: How would I implement it if the Singleton was a derived class? Would i need to delete the constructor of the base class as well, or wouldn't that matter?

  • @notanenglishperson9865

    Your fast typing is so satisfying

  • @connorking9217
    @connorking9217 Před 4 lety

    More design patterns would be great!

  • @rahmanmd8460
    @rahmanmd8460 Před 3 lety

    Thank you buddy it really helped me. Btw your english is quite understandable to me love from 🇮🇳

  • @Yoyoyo_gamer
    @Yoyoyo_gamer Před 4 lety +3

    I use Singletons at work, and I learned something. Deleting the copy constructor. When I researched this topic I had not seen this part before.
    You did not touch on the part of deleting the actual singleton, Im not sure if its actually an important thing to look into when using Singletons, but I have heard there is a particular way to actually delete the singleton in order to evade memory leaks?,

  • @kajonpongpoopamonkaipob6153

    Watching for Thailand
    Am waiting for a long time and teaching all 23 types

  • @user-kf1xn1dq9t
    @user-kf1xn1dq9t Před 3 lety

    Huh, never thought about using namespace for implementing singletons. Need to try that way of creating it, maybe it have something special in it.

  • @vitkh3897
    @vitkh3897 Před 4 lety +1

    Yes! Amazing video,please do more of those on design patterns,id also enjoy some videos about multi-threading.
    great videos man!

  • @standriggs2420
    @standriggs2420 Před 6 měsíci

    It would be nice to follow up this with a comparison to the Monostate design pattern.

  • @okqut
    @okqut Před 4 lety +31

    17:25 cant you just have a class with everything static instead of a namespace so you can have private / public

    • @ilendur3810
      @ilendur3810 Před 4 lety +27

      If you do this, or use directly accessed namespaced data, you can run into something called the static initialization order fiasco. All global and class level static data gets initialized before the main function ever executes. Because there are no rules in the C++ standard dictating in what order translation units will be initialized you could end up with code depending on data that has not been initialized yet, causing a crash. Exceptions are also tricky to handle with "static classes", because you can't write exception handlers for code that runs before your main ever gets called. If a static object does throw on construction you end up with implementation defined behavior. That being said, you can use this pattern as long as you are entirely sure you aren't depending on any static variables outside your own translation unit and aware of the initialization order within your own translation unit. A singleton doesn't have this problem because the data is lazily initialized whenever you first need it.

    • @pcache
      @pcache Před 4 lety

      I was thinking the same thing, and thank you @Ilendur for explaining

    • @MsJavaWolf
      @MsJavaWolf Před 4 lety +1

      @@ilendur3810 This is correct and I wish the video mentioned this, for me the video didn't really show why singletons would be useful.
      There are also some libraries that will not let you use certain functions during static initialization.
      But it's important to point out that this all only applies to the pattern when lazy initialization is used, in other words the style where you put the static variable inside the function, if you just have it as a private static class variable there can still be problems.

    • @SrIgort
      @SrIgort Před 4 lety +1

      @@ilendur3810 but you can just use a "Initialize" method to initialize later the class

  • @JamesStocks
    @JamesStocks Před 4 lety

    At the start of the video I was unsure why not to just use a class - contributors to the code should understand that it's a singleton and shouldn't be instantiated more than once.
    But at the end of the video I saw how nice the calling code inside main() is :)

  • @ynny7885
    @ynny7885 Před 2 lety

    Well explained thank you :)

  • @wasit-shafi
    @wasit-shafi Před 4 lety

    osom...happy to c u back

  • @poohshmoo9892
    @poohshmoo9892 Před 3 lety

    i can see some chap on code interview ... " i can name function a "float" ... cherno does it ... "

  • @jonasvervoort1399
    @jonasvervoort1399 Před 4 lety

    Hi Cherno, Again a super nice video! You asked if there is interest in other patterns. I wonder what your opinion is about creating interface style (abstract) classes in combination with inversion of control in C++. I'm a big fan of unit testing and use this interface style programming (common in for example C#) to be able to mock out functionalities. I'm interested in your experience on this topic.