No video

SINGLETONS in C++

  Рет қаралды 199,240

The Cherno

The Cherno

Күн бұрын

Пікірлер: 377
@TheCherno
@TheCherno 4 жыл бұрын
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 4 жыл бұрын
The Cherno make a data structure series bro
@vvill-ga
@vvill-ga 4 жыл бұрын
lmao "up to 91% off"... My price went from $138 to $129...
@user-pg8xt3tn1w
@user-pg8xt3tn1w 4 жыл бұрын
Can i have an English subtitle to help with my study?
@MrTega1975
@MrTega1975 3 жыл бұрын
@The Cherno, can you explain *Dependancy Injection* pattern in C++ ?
@sh4ilendra
@sh4ilendra 3 жыл бұрын
Please make a most used design pattern related series... much needed..
@neerajbute2094
@neerajbute2094 4 жыл бұрын
I'd really like more of such design pattern content. Big fan btw, great content.
@jefferson5884
@jefferson5884 Жыл бұрын
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 3 жыл бұрын
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 4 жыл бұрын
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 4 жыл бұрын
Tamas Demjen We really need people like you in the comments section
@LoopinFool
@LoopinFool 4 жыл бұрын
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 4 жыл бұрын
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 3 жыл бұрын
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 3 жыл бұрын
@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 4 жыл бұрын
Yes! Please, do cover more Design Patterns! Side question: can you type and talk like that or is that edited? Regards!
@Mauritz5
@Mauritz5 4 жыл бұрын
YAY! More C++ :)
@sriramiyer9840
@sriramiyer9840 4 жыл бұрын
I am so damn happy this series is back. Have been waiting for a c++ video for so long!!
@gustavoleite8611
@gustavoleite8611 4 жыл бұрын
Cherno, have you considered covering more design patterns in the C++ series? Thanks!
@adamjcasey
@adamjcasey 2 жыл бұрын
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 9 ай бұрын
thanks for this comment!
@rupakrokade
@rupakrokade 4 күн бұрын
Can you share link to any of your public repository?
@philmarsh3859
@philmarsh3859 4 жыл бұрын
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.
@kashish0007
@kashish0007 4 жыл бұрын
Keep it up, i am a student that is c++ geek. I learnt a lot through you.
@NicolaiSyvertsen
@NicolaiSyvertsen 2 жыл бұрын
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.
@essmunson
@essmunson Жыл бұрын
more design patterns please!! you're by far the best C++ teacher on yt
@TheGenZProgrammer
@TheGenZProgrammer 4 жыл бұрын
OMG, You're even married, Lol, Its been 7 years man, since I followed your channel and waited for you to release more videos, KZfaq recommendations have brought us back together lol.
@TheGenZProgrammer
@TheGenZProgrammer 4 жыл бұрын
@morph611 Lol
@nobir98
@nobir98 4 жыл бұрын
Hahaha lol I've noticed that too his married that's for sure 😄
@mikefochtman7164
@mikefochtman7164 Жыл бұрын
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.
@sasoyu8922
@sasoyu8922 4 жыл бұрын
More c++ ep please!
@lKyoto
@lKyoto 4 жыл бұрын
Les goooooo. Hell yeah, more c++ content. 🔥🔥
@chrisstone-streetlightinte5629
@chrisstone-streetlightinte5629 4 жыл бұрын
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 4 жыл бұрын
I agree, of course there are other resources for that, but I really like the way Yan explains things!
@Goras147
@Goras147 3 ай бұрын
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 Ай бұрын
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 22 күн бұрын
@@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 22 күн бұрын
@@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
@gmc254quads6
@gmc254quads6 4 жыл бұрын
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.
@xdestyn
@xdestyn 4 жыл бұрын
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
@PrinceGupta-jo8lo
@PrinceGupta-jo8lo 4 жыл бұрын
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.
@fixpontt
@fixpontt 4 жыл бұрын
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 4 жыл бұрын
everything with locking has overhead
@fixpontt
@fixpontt 4 жыл бұрын
@@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 4 жыл бұрын
@@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.
@ramijaziri8734
@ramijaziri8734 2 жыл бұрын
Thanks for your great videos, can you please make a tutorial about DESIGN PATTERNS
@brunooliveirasoares7489
@brunooliveirasoares7489 4 жыл бұрын
I'm bagging you: more design patterns! great video!
@TNothingFree
@TNothingFree 2 жыл бұрын
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).
@stefanhedman
@stefanhedman 4 жыл бұрын
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 2 жыл бұрын
Well designed singletons are very testable! What do you mean?
@miko007
@miko007 Жыл бұрын
@@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.
@kristystrives6979
@kristystrives6979 4 жыл бұрын
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!
@evangcharles
@evangcharles 4 жыл бұрын
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.
@stke1982
@stke1982 3 жыл бұрын
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 2 жыл бұрын
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.
@jnwms
@jnwms 2 жыл бұрын
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 Жыл бұрын
this. global state is just bad.
@rcookie5128
@rcookie5128 4 жыл бұрын
Already knew about singletons, but super helpful that I learned how to circumvent the cumbersome declaration of the static instance in the translation unit.
@EmbeddedSorcery
@EmbeddedSorcery 4 жыл бұрын
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"); "
@eemelilehtonen8628
@eemelilehtonen8628 4 жыл бұрын
"Let's just pick on Java" xD sad Java noises
@whythosenames
@whythosenames 4 жыл бұрын
Eemeli Lehtonen same :)
@jared0801
@jared0801 3 жыл бұрын
Glad to hear you say you're just getting started! Can't wait!
@okqut
@okqut 4 жыл бұрын
17:25 cant you just have a class with everything static instead of a namespace so you can have private / public
@ilendur3810
@ilendur3810 4 жыл бұрын
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 4 жыл бұрын
I was thinking the same thing, and thank you @Ilendur for explaining
@MsJavaWolf
@MsJavaWolf 4 жыл бұрын
@@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 4 жыл бұрын
@@ilendur3810 but you can just use a "Initialize" method to initialize later the class
@glee21012
@glee21012 4 жыл бұрын
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.
@legasa6343
@legasa6343 4 жыл бұрын
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.
@practicalsoftwaremarcus
@practicalsoftwaremarcus 4 жыл бұрын
A question ! Is there any advantage of Singletons over pure static class ? (With static methods and attributes, and private constructor) i.e: class Random{ public: static float Float(){return m_number;}; private: Random(){}; static float m_number; }; float Random::m_number = 0.5; int main(){ std::cout
@SPL1NTER_SE
@SPL1NTER_SE 4 жыл бұрын
This is kind of a late reply, but the thing is that you can't pass a static class as a parameter. Singletons let you treat them like any other object.
@pavelperina7629
@pavelperina7629 4 жыл бұрын
Static class is initialized before main() and you don't have any control over order of initialization I guess.
@AndreasAn
@AndreasAn 5 ай бұрын
This was pretty useful and easy to understand. Thank you!
@TimeFadesMemoryLasts
@TimeFadesMemoryLasts 4 жыл бұрын
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.
@wz5445
@wz5445 3 жыл бұрын
Love this series, more design patterns please!!!!
@debkr
@debkr 2 жыл бұрын
The indirection is a great idea. I have never thought of it like this 👍
@ultimatesoup
@ultimatesoup 10 ай бұрын
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
@caliphsystem
@caliphsystem 2 жыл бұрын
You C++ classes are simply brilliant. Thank you.
@dandonahue1403
@dandonahue1403 4 жыл бұрын
FWIW, Singeltons are used quite a bit in embedded designs to control access to hardware.
@ChedwinX
@ChedwinX 4 жыл бұрын
The C++ series is back! Hell yeah!
@notanenglishperson9865
@notanenglishperson9865 2 жыл бұрын
Your fast typing is so satisfying
@eyalpery8470
@eyalpery8470 4 жыл бұрын
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!
@Yoyoyo_gamer
@Yoyoyo_gamer 4 жыл бұрын
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?,
@poohshmoo9892
@poohshmoo9892 3 жыл бұрын
i can see some chap on code interview ... " i can name function a "float" ... cherno does it ... "
@ciganyhipervandor132
@ciganyhipervandor132 Жыл бұрын
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)...
@pawelpow
@pawelpow 3 жыл бұрын
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 KZfaq and this is the first thing I saw! Thanks man!
@pawelpow
@pawelpow 3 жыл бұрын
I made it using Object oriented programming by the way, hence the reason why I had to declare the instance
@footballCartoon91
@footballCartoon91 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
@12:55 can be assigned to a another reference object/variable like so auto& reference=Random::Get().Float();
@rudragouda5762
@rudragouda5762 4 жыл бұрын
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
@KyleHarrisonRedacted
@KyleHarrisonRedacted 3 жыл бұрын
In other languages I would stuff my game state into a singleton. And then I tried it in c++ and wow, mistakes were made. I can't even describe to you how deep the cyclic dependency error crap went...
@whythosenames
@whythosenames 4 жыл бұрын
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
@austinfritzke9305
@austinfritzke9305 4 жыл бұрын
Best C++ tutorials on the internet. Hostinger better be giving you some good money.
@raptorinc8331
@raptorinc8331 4 жыл бұрын
BTW You don't need to define static variables in outside the class in c++17 , you can use inline static keyword Learned a lot from you😊
@wansage
@wansage 8 ай бұрын
well, static inline in c++17 does not work for this case, the compiler indicates incomplete error.
@osadniasod223
@osadniasod223 3 жыл бұрын
Cherno you saved my life with this video (again) thx for the great tutorial
@TheNovakon
@TheNovakon 2 жыл бұрын
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.
Жыл бұрын
For the random generator you could have just entered a comment saying // I rolled a dice for this number. I am joking, your channel is great.
@telnobynoyator_6183
@telnobynoyator_6183 2 жыл бұрын
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
@Astfresser
@Astfresser 3 жыл бұрын
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.
@kitgary
@kitgary 4 жыл бұрын
Excellent! I finally find some useful C++ tutorial on KZfaq! Thanks!
@Tachi107
@Tachi107 4 жыл бұрын
Man, I honestly don't see why I would use this. I mean, when you understand it, it becomes clear, but the fact is that you _have_ to understand a thing that could really be simpler and shorter. Am I missing something? Do singletons have any advantages compared to namespaces in C++?
@SrIgort
@SrIgort 4 жыл бұрын
I think that in this case namespaces would be just ugly =P
@hkva1859
@hkva1859 4 жыл бұрын
Tachi Singleton classes can still have constructors and destructors, while namespaces would require you to write and call initialization and shutdown functions. An easy way to demonstrate the advantage of a singleton over a namespace would be a class that logs text to a file, where the constructor and destructor could be used the open and close a handle to the file.
@Tachi107
@Tachi107 4 жыл бұрын
@@hkva1859 I see, you're right. Still, I probably won't use them often
@oracleoftroy
@oracleoftroy 4 жыл бұрын
@@Tachi107 That's good, as I think Singleton is vastly overused. It really only makes sense for things that are universally cross cutting, should only have one shared instance, and a plain old global isn't good enough. Think loggers (and even then, I don't think Singleton is worthwhile).
@drakejohnson3803
@drakejohnson3803 4 жыл бұрын
Good theoretical explanation while keeping it simple. Plus, a relevant example. Great video!
@Flinsch77
@Flinsch77 2 жыл бұрын
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).
@sameerppradhan
@sameerppradhan 2 жыл бұрын
Would definitely to see some other design patterns video. Love your style of teaching and examples.
@Zatmos
@Zatmos 4 жыл бұрын
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.
@tolkienfan1972
@tolkienfan1972 2 жыл бұрын
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.
@mohammedyasser4717
@mohammedyasser4717 4 жыл бұрын
loved the video. Please make more Design pattern tutorials like observer pattern, Factory pattern, the decorator pattern etc.
@AM-qx3bq
@AM-qx3bq 4 жыл бұрын
YES. EDUCATIONAL C++. MORE OF THIS PLEASE.
@lexverheem9109
@lexverheem9109 2 жыл бұрын
Please do more design patterns! Your content is great and your explanation is very clear and elaborate!!
@Brahvim
@Brahvim 2 жыл бұрын
GOODNESS ME, 14:09! That is a lot of speed! Edited? Typed? I can't figure out! Haha.
@MrBulya
@MrBulya 2 жыл бұрын
I think speaking of Singletons without mentioning dependency injection is somewhat pointless, as you actually covered that without the implementation being derived from somewhere above, the singleton class can be simply replaced by a namespace and have the same functionality. Since I'm far not a c++ expert, I actually wonder in what ways can a dependency injection implemented in c++. I can imagine ways of doing that, but I don't really think those are good ways, so perhaps covering that part may be good.
@lukaskelber
@lukaskelber 4 жыл бұрын
14:06 Is this real time typing? That's insane :D
@digzrow8745
@digzrow8745 4 жыл бұрын
No way
@raja28chowdhury
@raja28chowdhury 3 жыл бұрын
no he types and later on he puts voice overlay in some videos he has said that
@johnnygood7997
@johnnygood7997 4 жыл бұрын
We need more of this
@Pcoxproductions
@Pcoxproductions Жыл бұрын
6:53 a singleton is organized global variables
@abdullahhejazi
@abdullahhejazi 3 жыл бұрын
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.
@buddhasarchive8385
@buddhasarchive8385 4 жыл бұрын
yes. please make more such videos
@standriggs2420
@standriggs2420 6 ай бұрын
It would be nice to follow up this with a comparison to the Monostate design pattern.
@vasiliynkudryavtsev
@vasiliynkudryavtsev 2 жыл бұрын
Greetings, Cherno. I think the singleton pattern is very very important. In your video material you showed the case of singleton object being copied. I think, that was a great misuse of singleton paradigm, because it must not be ever copied but only got by reference or pointer. Could the "explicit" runeword make your example more prone of errors? Or any other ways?
@vasiliynkudryavtsev
@vasiliynkudryavtsev 2 жыл бұрын
Probably, the Singleton pattern shall be accompanied by Pimple idiom. But regular developers are too lazy.
@priyadarshini.d4980
@priyadarshini.d4980 2 жыл бұрын
Hey Cherno.. Great content and well explained. Expecting more videos on other design patterns as well..!!
@mehuldevganiya1049
@mehuldevganiya1049 3 жыл бұрын
Best learning. Please make such videos on as much Design patterns as possible to implement in C++. Awaiting
@anuragparothia7996
@anuragparothia7996 3 жыл бұрын
This is the best C++ playlist on KZfaq, Hope i know it earlier, but i think some topics are missing.
@Gismo359
@Gismo359 4 жыл бұрын
The biggest benefit of a singleton is the fact that it has a destructor, so you can free the resources you have used without forcing the user to call it. Also, a static function variable can have a minor performance hit if your singleton is not a POD type, because it has to check if it has been initialized or not everytime you call the function, and do it in a thread-safe manner.
@chris_burrows
@chris_burrows 4 жыл бұрын
Really? This is the single only argument I've heard for singletons, how much of a performance hit are we talking?
@ColinBroderickMaths
@ColinBroderickMaths Жыл бұрын
You can have private members in a namespace by using an anonymous inner namespace.
@pavelperina7629
@pavelperina7629 4 жыл бұрын
Everyone: * Singletons are bad! * Singletons are obsolete! * Don't use singletons, ffs! Someone: * What is actually bad about singletons? * Why is depending on interface classes better than depending on one given implementation. * How to ditch singletons in legacy code The Cherno: * SINGLETONS Anyways, you have great videos for beginners and even advanced programmers, because C++ is super complicated and no one knows everything. Singletons are starting to be problematic inside large code where everything depends on 4 singletons such as logger, serializer, licenses, rights and you want some code to bypass all of this and just want to make unit test pretending you have certain rights, all licences, data are deserialized from memory object instead of file and log messages are discarded.
@aksalive
@aksalive 11 ай бұрын
More videos on c++ design patterns please.
@yulyalesheva98
@yulyalesheva98 4 жыл бұрын
guys, am I in a paradise? 1.Yan's video every single day 2. I asked him to tell us about gamedev patterns in the comments a couple videos ago.
@PirateKnO
@PirateKnO 3 жыл бұрын
a database handler a logger are also good examples for singletons
@CreativeSteve69
@CreativeSteve69 4 жыл бұрын
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. :)
@pavfrang
@pavfrang 2 жыл бұрын
Can you talk about other Design Patterns that you use in C++?
@maheshhegde7332
@maheshhegde7332 3 жыл бұрын
Please add seperate playlist and videos exclusively explaining design patterns in depth
@FRNathan13
@FRNathan13 2 жыл бұрын
What about an another singleton kind: class MyClass { ...members... } myClass; its a typedef or is same as singleton pattern in C++?
@user-eo5bh2zg2
@user-eo5bh2zg2 3 жыл бұрын
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
@hudsoncurren1592
@hudsoncurren1592 4 жыл бұрын
website company: *charges money* me with a linux server: ill do it myself
@BookWormsOriginal
@BookWormsOriginal 4 жыл бұрын
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.
@federicoalbesa3748
@federicoalbesa3748 3 жыл бұрын
The very best video i'd seen. 🤯 Thanks for all
Small String Optimization in C++
13:14
The Cherno
Рет қаралды 71 М.
WHY did this C++ code FAIL?
38:10
The Cherno
Рет қаралды 250 М.
Get 10 Mega Boxes OR 60 Starr Drops!!
01:39
Brawl Stars
Рет қаралды 16 МЛН
Harley Quinn's plan for revenge!!!#Harley Quinn #joker
00:49
Harley Quinn with the Joker
Рет қаралды 33 МЛН
Stack vs Heap Memory in C++
19:31
The Cherno
Рет қаралды 563 М.
Global Variables in C++... not as easy as it seems
18:25
The Cherno
Рет қаралды 62 М.
10 Design Patterns Explained in 10 Minutes
11:04
Fireship
Рет қаралды 2,2 МЛН
Casting in C++
13:25
The Cherno
Рет қаралды 184 М.
I did a C++ University Assignment
50:23
The Cherno
Рет қаралды 290 М.
Function Pointers in C++
12:41
The Cherno
Рет қаралды 386 М.
lvalues and rvalues in C++
14:13
The Cherno
Рет қаралды 310 М.
ITERATORS in C++
17:09
The Cherno
Рет қаралды 205 М.
Get 10 Mega Boxes OR 60 Starr Drops!!
01:39
Brawl Stars
Рет қаралды 16 МЛН