Singleton Pattern - Design Patterns (ep 6)

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 มิ.ย. 2024
  • Video series on Design Patterns for Object Oriented Languages. This time we look at the Singleton Pattern.
    ► The playlist
    • Design Patterns in Obj...
    ► Head First: Design Patterns
    geni.us/nlbA6
    ► Design Patterns: Elements of Reusable Object-Oriented Software
    geni.us/PsXmo
    ► Clean Code Talks at Google, by Miško Hevery
    • "The Clean Code Talks ...
    • "The Clean Code Talks ...
    • The Clean Code Talks -...
    • The Clean Code Talks -...
    • How to Write Clean, Te...
    💪 Patreon Community
    / christopherokhravi
    📚 Products I Recommend
    geni.us/71ZXF

ความคิดเห็น • 490

  • @mphophantshang9087
    @mphophantshang9087 5 ปีที่แล้ว +394

    Boss: My wife is cheating on me
    Programmer: One man's constant is another man's variable....

  • @vineetherenj3143
    @vineetherenj3143 3 ปีที่แล้ว +84

    Me: Let me learn about Singleton pattern.
    Christopher: never use singleton pattern.
    Me: -_-

    • @eugeneganshin2934
      @eugeneganshin2934 3 ปีที่แล้ว +1

      You can use it tho. In Typescript Nestjs Framework alsmost every class is a singleton and its fine.

    • @PeterFlemmingNielsen
      @PeterFlemmingNielsen 2 ปีที่แล้ว

      You should never use it, except when you should. (eg. it is good to prevent database connection leaks)

    • @AlonGvili
      @AlonGvili 2 ปีที่แล้ว

      @@eugeneganshin2934 so like redux store is a singleton in a javascript/react world ?

  • @CognitiveSurge
    @CognitiveSurge 7 ปีที่แล้ว +39

    Love these videos, thanks Christopher! The Head First series is great.

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +1

      Karl Hadwen thanks! I'm very glad they're useful. Thanks for watching :)

  • @mohammadnaseri5045
    @mohammadnaseri5045 7 ปีที่แล้ว +182

    One of the best series I have ever watched. Keep going on dude!

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +8

      mohammad naseri thank you for the kind words. I'm glad it's useful :)

  • @Tapuck
    @Tapuck 6 ปีที่แล้ว +12

    Your editing is absolutely fantastic. The stream of knowledge never stops or slows down.

  • @hoelefouk
    @hoelefouk 4 ปีที่แล้ว +5

    If there is anything comparable to your teaching skills, it's your skills to have amazing intros. Intro for this particular video is simply genius. Your intros are so underrated man!

  • @ckmedia6120
    @ckmedia6120 5 ปีที่แล้ว +3

    This is why I love the internet, good videos with good info. My man!

  • @jvsnyc
    @jvsnyc 2 ปีที่แล้ว

    The Clean Code links are all great! Now, back to your videos! I wound up learning as much from this as any of your others in this playlist, thanks to the excellent links provided in the description. Singletons seem very convenient, until test-time...

  • @uzil24
    @uzil24 5 ปีที่แล้ว +1

    Thank you for this video and all the rest. I really hope to find every single Design pattern explained by you in this play list.

  • @lyusienlozanov1632
    @lyusienlozanov1632 6 ปีที่แล้ว +3

    Everything makes sense with that kind of explanation! Thanks, Chris!

    • @ChristopherOkhravi
      @ChristopherOkhravi  6 ปีที่แล้ว +1

      Thank you for the very kind words. Much appreciated and I'm glad to hear it. Thanks for watching :)

  • @ZenMonkIlya
    @ZenMonkIlya 4 ปีที่แล้ว

    Very informative! Thank you very much for this fantastic explanation, and for presenting it in such a good-natured way!

  • @lindawisebear
    @lindawisebear 3 ปีที่แล้ว

    It was really helpful that you went through the code in this video; great series! :)

  • @mikhailbisserov8017
    @mikhailbisserov8017 6 ปีที่แล้ว +54

    That's a good video. Especially the code smell part. I would add though that to ensure single instance you also need to wrap instance creation with lock (Monitor), because nowadays threads are used left and right. In fact, "double-checked locking" (that's a pattern) should be used
    if (instance == null) {
    lock (_lockObject) {
    if (instance == null) {
    instance = new Singleton();
    }
    }
    }

    • @GohersWay
      @GohersWay 3 ปีที่แล้ว

      Sorry for asking such a newb question but what is purpose of locking here.

    • @mikhailbisserov8017
      @mikhailbisserov8017 3 ปีที่แล้ว +12

      @@GohersWay Locking prevents execution of the enclosed code by multiple threads. We want "instance = new Singleton()" execute only ONCE in entire process lifetime and for that we need to make sure that inner "if (instance == null)" is never evaluated SIMULTANEOUSLY (but theoretically it can happen more than once, if two threads happen to access the singleton instance for the FIRST time simultaneously). Now, why do we need outer "if (instance == null)" - because it's much cheaper than lock in terms of CPU. If a web application runs for 30 minutes before process recycling, then 99.9% of instance access cases by different threads will go no further than outer if, 0.09% will create monitor, wait on that monitor, and evaluate inner if, and 0.01% will actually execute inner if's enclosed code (instance = new Singleton).

    • @good_life_videos
      @good_life_videos 2 ปีที่แล้ว

      @@mikhailbisserov8017 but even if two threads access that part of creating the object, why should it be a concern ? considering, first instantiation call is just necessary (but state will always be random, so hardly matters who creates it finally or been changed by some other threds at same time)

    • @mikhailbisserov8017
      @mikhailbisserov8017 2 ปีที่แล้ว +3

      @@good_life_videos if two threads create instances of the object, it's not Singleton by definition. WHY we want to create it only once is an out-of-scope question. It's a given task, purpose of Singeton. Usually it's for performance and memory conservation, maybe even acquiring lock to some unique underlying resource, but again, it's out of scope.

  • @sibinM11
    @sibinM11 3 ปีที่แล้ว

    this guy and explanation is pure gem

  • @IamCagedAnimal
    @IamCagedAnimal 6 ปีที่แล้ว +15

    U, my good Sir are born for teaching, really nice and simple explanation for everyone to understand. Keep up the good job!
    cheers

  • @luli829
    @luli829 6 ปีที่แล้ว

    Already learned this in university and now planning to review again, my professor who teaches that course is very good, and your lecture is as good as the course I learned before ! Thank you so much ! Waiting for more

  • @abedalrawas2656
    @abedalrawas2656 7 ปีที่แล้ว

    These videos are so precious thank you!

  • @aniketb2010
    @aniketb2010 5 ปีที่แล้ว +9

    “One man’s constant is another man’s variable”... Woow!!

  • @ruvishkarathnayake9125
    @ruvishkarathnayake9125 4 ปีที่แล้ว +2

    The way you teach these lessons is perfect. This is a good example for my lecturers how to teach these stuff.

  • @DominikRoszkowski
    @DominikRoszkowski 7 ปีที่แล้ว +10

    Thanks, your explanation was clear and convincing :)

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +1

      Dominik Roszkowski thanks for sharing and for watching :)

  • @liveyounganastasia
    @liveyounganastasia ปีที่แล้ว

    I love how you explained this. Very clear. 👏

  • @sammclaren6965
    @sammclaren6965 9 หลายเดือนก่อน

    That's what I call 'in-depth explanation'! Awesome work.

  • @Death8ball
    @Death8ball 6 ปีที่แล้ว +1

    Fantastic series. When I get my first dev job I will do what I can to support you.

  • @vyaasshenoy1884
    @vyaasshenoy1884 5 ปีที่แล้ว +1

    Your explanation is clear and precise. I enjoyed the video and was able to understand the nuances of this pattern very well.

  • @karzo222
    @karzo222 3 ปีที่แล้ว +1

    You are criminally underrated. Deserves more followers. Top notch.

  • @ariaien8637
    @ariaien8637 4 ปีที่แล้ว

    Singleton design pattern is simple, however, complicated! every line of the code was explained thoroughly and beautifully.. well done! One of the best videos ever for Singleton!

  • @SantanPereira
    @SantanPereira 7 ปีที่แล้ว

    I have watched all your videos on Design Pattern, You rock!!! keep up the good work. :)

  • @kirubababu7127
    @kirubababu7127 3 ปีที่แล้ว +1

    The way you teach is fantastic, you are my inspiration.

  • @stefanoforgiarini339
    @stefanoforgiarini339 5 ปีที่แล้ว

    Excellent explanation Cristopher! Only one thing to note: what happens in a multi-threaded environment? It may happen that two different threads call the getInstance() method and because of this, more than one instance of the Singleton class is created. The only way to ensure a single instance is to add the synchronized in the getInstance method signature or (it would be better), synchronize the block of code in which we check if the instance is null (the if statement).
    Congrats for your videos!

  • @Metachief_X
    @Metachief_X 4 ปีที่แล้ว

    god bless you, christopher. Please keep making videos!!

  • @thomas2957
    @thomas2957 5 ปีที่แล้ว

    You're views must really go up every December/January. Exams time and your explanations are great, thanks man

  • @prapulkrishna
    @prapulkrishna 4 ปีที่แล้ว

    You are one of the best teachers on the planet. Thanks for the videos.

  • @priyankmungra29
    @priyankmungra29 3 ปีที่แล้ว +1

    Thank you for making this series ❤❤❤

  • @jaycelila6258
    @jaycelila6258 7 ปีที่แล้ว

    don't understand why this video is not popular than it has to be. You are amazingly well explaining abstract concepts so dumb like me can understand. Thanks.

  • @clementtytube
    @clementtytube 2 ปีที่แล้ว +1

    First time seeing your videos... I give a 10000 likes for your cuts and edits. Your videos are full of info (no lags and time waste). That itself proves you value your trade.. Kudos

  • @IntelliAbb
    @IntelliAbb 7 ปีที่แล้ว

    As much as we try to avoid Singletons, we do run into scenarios where we have to use one. Specially when working with native Android using Java where for creating Fragments, we use a public Instance property to get access to it. These Instances are then held in memory for various operations done by the OS.
    Great series, keep it up :)

  • @johnyjohnjohny8014
    @johnyjohnjohny8014 7 ปีที่แล้ว +2

    This is quality man. Keep the good work, youtube definitly needs that. Well done

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +1

      +JohnyJohn Johny Thanks! And thanks for watching :)

  • @mehakjain5384
    @mehakjain5384 6 ปีที่แล้ว +6

    One of the best video series I have ever seen. Superb explanation. Quite like the way you do these videos in your own style. Keep up the good work.
    P.s. loved ur writing and honesty :P

    • @ChristopherOkhravi
      @ChristopherOkhravi  6 ปีที่แล้ว +2

      Thanks! I'm glad to hear that the style works :) Thank you for the encouragement and for watching the series :)

  • @DAS-jk3mw
    @DAS-jk3mw ปีที่แล้ว

    This is the best explanation of a Singleton pattern ever !!

  • @seguncodes3136
    @seguncodes3136 3 ปีที่แล้ว

    The best explanation of Singleton pattern i have come across

  • @dalitsobotha7932
    @dalitsobotha7932 3 ปีที่แล้ว +1

    I love the way you teach. Your explanations are thorough and the way you speak is very captivating. Straight to the point, you are not a time waster.

  • @always90s
    @always90s 7 ปีที่แล้ว +3

    Thanks Christopher! I will definitely check out those links. On to the next pattern :)

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว

      Hitesh Rana cool! They're worth the time. Misko seems like a very smart guy. Thanks for watching!

  • @user-sh9bj8qz3j
    @user-sh9bj8qz3j 4 หลายเดือนก่อน

    A clear video on single ton design pattern. Thank you.

  • @sumitkapadia1509
    @sumitkapadia1509 6 ปีที่แล้ว +5

    The way you jump entered, I expect to hear "Hey Vsauce" :P . Awesome video.

  • @sushantkumar1845
    @sushantkumar1845 3 ปีที่แล้ว

    The best playlist (on IT/Sw) I have ever watched on TH-cam

  • @MrTrik15
    @MrTrik15 5 ปีที่แล้ว

    Clear, audible video. Keep it up

  • @egruper
    @egruper 6 ปีที่แล้ว +1

    had to add - you are amazing! great vids once again Thank you.

  • @Wwise_sounds
    @Wwise_sounds ปีที่แล้ว

    SNHU is using this video as material reference. you should feel proud that an university is using your videos to teach new students :)

  • @rustemduran4248
    @rustemduran4248 2 ปีที่แล้ว

    NIce man, totally grasped for the first time, thank you so much.

  • @rajeshrathod9329
    @rajeshrathod9329 7 ปีที่แล้ว

    Very nice and detailed explanation of design pattern concepts.... I am waiting for other remaining design patterns videos ..... Thank you very much.

  • @sachinkainth9508
    @sachinkainth9508 2 ปีที่แล้ว

    Very great video. Thank you for this. One thing that is missing is a discussion about a thread-safe version of the Singleton pattern using double check locking or some other mechanism to achieve thread-safety.

  • @pervanadurdyyeva1920
    @pervanadurdyyeva1920 3 ปีที่แล้ว

    Simplest and clear explanation I've come across. Thanks

  • @SaurabhGuptaicecool
    @SaurabhGuptaicecool 4 ปีที่แล้ว +2

    This series is greatest I've ever encountered on youtube on any topic, period.

  • @naffiahanger9316
    @naffiahanger9316 2 ปีที่แล้ว

    Your explanation of concepts are easy to understand 👏👏👏👏👏

  • @VaibhavJain
    @VaibhavJain 4 ปีที่แล้ว

    Liked the way you describe different aspects of decision making and assumptions related to pattern

  • @praveennampelly3559
    @praveennampelly3559 2 ปีที่แล้ว

    Superb man, you explained very well. I really got lot of interest on design patterns. Thank you so much I leant a lot from your video's.

  • @irshuck
    @irshuck 6 ปีที่แล้ว +2

    Woooow, Thanks christopher for this wonderful series. Your teaching style is awesome. waiting for other design patterns :)

    • @ChristopherOkhravi
      @ChristopherOkhravi  6 ปีที่แล้ว

      +Irshad ck Thank you. Makes me glad to hear. Next one is coming very soon. Thanks for watching :)

  • @kasunperera9700
    @kasunperera9700 5 ปีที่แล้ว

    thanks chrostoper the best video about singleton i ever watched

  • @gavinmcgregor3219
    @gavinmcgregor3219 6 ปีที่แล้ว +4

    Just wanted to let you know that you are amazing for making this series!

    • @ChristopherOkhravi
      @ChristopherOkhravi  6 ปีที่แล้ว

      Thank you. You peeps are amazing for watching it :D

  • @timothyjohns8775
    @timothyjohns8775 6 ปีที่แล้ว +9

    Not sure about other languages, but in C++, the preferred approach to singletons is known as the Meyers Singleton (named after Scott Meyers who included it in his book Effective C++). The idea is to declare the variable within a method rather than as a member variable. This is thread safe, and it also allows you to skip the check to see whether or not the singleton exists. The code looks like this:
    class Singleton {
    private:
    Singleton() {}
    public:
    static Singleton& getInstance() {
    static Singleton instance;
    return instance;
    }
    };

    • @yoavmor9002
      @yoavmor9002 ปีที่แล้ว +1

      I don't think intra-method static variable magic exists in non C languages, I think it's mostly a C thing. By the way, I'm assuming you meant static Singleton instance = new Singleton()

    • @Remist0
      @Remist0 ปีที่แล้ว +1

      @@yoavmor9002 It's not a pointer, so they did not mean that.

  • @slobodanmikaric2180
    @slobodanmikaric2180 6 ปีที่แล้ว

    Singleton can be used in notification servers for mobile devices or others, when you always have one and only one instance to call to add or remove observers. :) thx Christopher Okhravi for clearing this out!

  • @glenndify1
    @glenndify1 7 ปีที่แล้ว +2

    you have really simplified design patterns ... classic explaination ... thank you very much

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว

      +Glenn Dsilva Thanks for letting me know! :) And thanks for watching!

  • @user-qg8ku9gv1l
    @user-qg8ku9gv1l 2 ปีที่แล้ว

    Super clear! Thanks Christopher!

  • @user-gb7cp5vz4q
    @user-gb7cp5vz4q 5 ปีที่แล้ว

    Thanks a lot! Very cool vivid explanations and examples! Thanks! Thanks! Thanks!

  • @betterculture
    @betterculture 6 ปีที่แล้ว +9

    Great video! However, the argument is not that Singletons are necessarily bad except that they are misunderstood, often abused and can introduce unwanted side effects when used without proper thought -- a lot of frameworks use Singletons :D.
    For instance, I have this piece of (framework) code that manages all of my configurations (and of subsystems) and the construction of this object is really heavy and doesn't even lend itself to a prototype or flyweight. It is important that these bits of configuration happen only once at application startup. Instead, I hide my singleton configuration instance behind an abstraction and delegate the construction and life cycle to a DI / IOC container. In other words, users only have to depend on that abstraction e.g. IConfigurationManager etc.
    In addition, the one thing (or two) I think you're missing is the issue of potential race conditions or thread-safety in concurrent systems when handling stuff like this manually -- why it's important to use a good DI framework and instead depend on abstractions. Plus, it is your responsibility to ensure that your object is IMMUTABLE upon construction and member access is read-only.

  • @radoslavangelov7193
    @radoslavangelov7193 5 ปีที่แล้ว

    Thanks for the really good video. I just found out these series and just cannot stop watching them! However, the Singleton is very used in languages like Ruby and Python. That's why I cannot agree it should be used nowhere. Maybe in Java and C it doesn't make a lot of sense but when you start understanding the meta programming in ruby for example, there is no way to not use the Singleton :)

  • @gg4eva763
    @gg4eva763 2 ปีที่แล้ว

    Oh my god, you are a good explainer! I'm actually understanding what's happening

  • @AVBFANS
    @AVBFANS 6 ปีที่แล้ว +1

    great video. finally I found explanation in a style that I can understand clearly. Thanks for the lesson. I am now a subscriber.

    • @ChristopherOkhravi
      @ChristopherOkhravi  6 ปีที่แล้ว +1

      +AVBFANS Awesome! Welcome to the channel :) And thank you for sharing your thoughts :)

  • @exoticcoder5365
    @exoticcoder5365 3 ปีที่แล้ว +1

    Gooooooooood one !!!! Very clear ! Clear all my concepts !

  • @abhisheksaxena518
    @abhisheksaxena518 3 ปีที่แล้ว +4

    In some cases it is actually good to use singleton pattern, infact kotlin has a class type "object" just to make it easier for developers to work around singleton pattern.
    The use cases where I have used it are db calls and api calls, in a way they do make sense.
    Think about like this, there could be different threads making calls to the db for different crud operations, and by using singleton pattern we can make sure that the information that we get at any instance is correct until modified by the single owner(modifier), this also helps with locking mechanism that dbs have to prevent inconsistent data and conflicts.
    I agree with you that forcing a single instance may not be the viable approach but it can be seen as a preventive approach in this use case.
    Please correct me if I am wrong or incorrectly using this pattern.

    • @debaratimaiti2570
      @debaratimaiti2570 ปีที่แล้ว +1

      I'm thinking using dependency injection is good for your case. Check out springboot or guice

    • @jphvnet
      @jphvnet ปีที่แล้ว

      A factory could do the job, thus it is transparent how the instance is created (only one, decorated, etc.). Using DI of course.

  • @LavGupta08
    @LavGupta08 7 ปีที่แล้ว +1

    thanks again Christopher. your videos are great

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +1

      Lav Gupta thanks! And thanks for keeping up the watching :)

  • @rusiraliyanage6643
    @rusiraliyanage6643 3 ปีที่แล้ว

    Hey SIr , I am Sri Lankan IT Undergraduate , you do explain these design patterns very well and Thank You So much. It was really helpful me to figure out the answers for the design patterns questions in our university :)

  • @flereoussarg
    @flereoussarg 6 ปีที่แล้ว

    Dude I really love your videos! Keep up the great work :)

  • @mayankgupta4243
    @mayankgupta4243 7 ปีที่แล้ว

    Thanks Christopher really your explanation is very good

  • @zolisawelani9338
    @zolisawelani9338 3 ปีที่แล้ว

    Super awesome mate. Clear explanation.

  • @kensearle4892
    @kensearle4892 4 หลายเดือนก่อน

    Thank you! Good points.
    The only time I have used a Singleton is when I was developing my own small website, wanted a quick cache, and only needed to load the database once at application startup to save on Cloud Database DTU hits. The webpage did load faster using the Singleton as a cache. A static class also worked for this scenario and is a little more straightforward. Either was ok for this scenario because I only changed the data about once per month, could restart the application when I wanted, and didn't have sessioned users on the site yet.
    However, once I want to add/change data in the database and want to reset the cache without an app restart, it is a dead-end; so it is not practical for many business production scenarios.
    I was just looking at 5-6 ways to cache and those were the quickest but most limited.

  • @oussamaml4161
    @oussamaml4161 6 ปีที่แล้ว

    i got a UML exam tomorrow , and i've been watching your video , your videos are saving my life right now

  • @mhshbht12
    @mhshbht12 7 ปีที่แล้ว

    very good explanation of Singleton. Thanks Christopher

  • @xavmanisdabestest
    @xavmanisdabestest 3 ปีที่แล้ว

    I think in a game manager would be the perfect time to use this pattern as you only ever have one instance of a video game so it could hold useful functionality there, but just like you said one mans constant is another mans variable.

  • @sitenepal7946
    @sitenepal7946 7 ปีที่แล้ว +3

    I was waiting for this one :) wow it's wonderful

  • @cunami2
    @cunami2 7 ปีที่แล้ว +1

    Amazing work on patterns, reading book is fine, but all those extra explanations are just making everithing perfectly fit in place. Wish you could finish rest of book till monday when i have test out of all patterns from book ^.^
    Any way, keep it up (sharing videos with rest of Uni, everyone is gratefull)

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว

      +cunami2 thank you very very much for sharing the video :) Increasing views and comments like yours are of course things that keep me going :) :)

  • @TheAshuvideo
    @TheAshuvideo 6 ปีที่แล้ว

    Your videos are very informative and precise. As you have almost covered Creational design patterns i`m waiting for the videos on Prototype, Builder and Object Pool Design patterns.

  • @monjasonsteng7861
    @monjasonsteng7861 2 หลายเดือนก่อน

    This is perfect. Thank you so much.

  • @sarahlee6976
    @sarahlee6976 ปีที่แล้ว

    BEST VIDEO EVER!!!!! So much better than university lectures

  • @kevinbenavides92
    @kevinbenavides92 6 ปีที่แล้ว

    You are a great instructor. Keep it up please.

  • @AngelFormica
    @AngelFormica 6 ปีที่แล้ว

    Excellent. easy to understand. Thank you.

  • @sakshisharma7097
    @sakshisharma7097 7 ปีที่แล้ว +1

    Dude ! am waiting for command design pattern :) you are awesome , i just love the way u make everything easier and understandable :)

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +1

      +sakshi sharma thanks! :) I'm glad you're following the series. Thanks for watching and for the comment.

  • @JohnDoe-ej6vm
    @JohnDoe-ej6vm 3 ปีที่แล้ว

    such a wonderful lecture . concept clear now.

  • @vinoddurge8600
    @vinoddurge8600 6 ปีที่แล้ว

    Great Series...Thanks for making those video ... waiting for more videos.

  • @tivmego
    @tivmego 7 ปีที่แล้ว +5

    watching keenly!

  • @biswarup077
    @biswarup077 6 ปีที่แล้ว +2

    Great video. One suggestion: if you would have included multi threaded environment that would have been great. In many interviews this is asked.

  • @adibmakhoul7076
    @adibmakhoul7076 6 ปีที่แล้ว +1

    just subscribed ur channel !
    love the way you teach !

  • @MultiAkash1988
    @MultiAkash1988 3 ปีที่แล้ว

    Love u sir, U make design pattern so easy

  • @edudestroer
    @edudestroer หลายเดือนก่อน

    Thank's for all the Knowledge🤜

  • @sshanzel
    @sshanzel 4 ปีที่แล้ว

    This is actually useful on my end. Using .Net Core with its "appsettings.json" for Configuration, it is intuitive that it will never change throughout its life since you have to hard-code the changes on the file itself first. So i don't think it hurts to identify those items.

  • @N1ghtR1der666
    @N1ghtR1der666 3 ปีที่แล้ว +2

    definitely a very simple to understand explanation, thank you. I would as "a novice" suggest there are legitimate uses for singletons in game development.

    • @PatrickMagToast
      @PatrickMagToast ปีที่แล้ว

      Could you provide an example, now that you've grown another year? :D I mean ofc there are things like "auto-saves" you need only once, but would there be a need to access them globally? It prevents people from doing stupid things but at the same time allows them to do other stupid things.

  • @swimmerboxer
    @swimmerboxer 7 ปีที่แล้ว

    Hello Christopher, excellent tutorials ! I would love to see all 13 patterns in your series !

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว

      +Efim Graur Slowly but surely we'll get there :) Thank you very much for your comment. Appreciated.

  • @yasienaboelkheer9630
    @yasienaboelkheer9630 5 ปีที่แล้ว

    it was previously recommended to use a static class (singleton) for some scenarios eg. "having a helper public class which provides data access functionality to the whole application". and of course new practices have already deprecated such approach . in my opinion i still find it very productive for some contexts

  • @Mari99Hamida
    @Mari99Hamida ปีที่แล้ว

    Clearly explained ! thank you .

  • @pw.70
    @pw.70 ปีที่แล้ว

    Brilliant work - thank-you.