What are Closures in C# and why you NEED to know about them

Sdílet
Vložit
  • čas přidán 5. 05. 2021
  • Become a Patreon and get source code access: / nickchapsas
    Check out my courses: dometrain.com
    Hello everybody I'm Nick and in this video I will explain in plain English, what is a closure in C# and why you need to know about them. When it comes time to optimize your code for memory allocations, closures tend to be the usual suspect for a big chunck of your allocated memory. Let's see what they are and how we can fix them.
    Don't forget to comment, like and subscribe :)
    Social Media:
    Follow me on GitHub: bit.ly/ChapsasGitHub
    Follow me on Twitter: bit.ly/ChapsasTwitter
    Connect on LinkedIn: bit.ly/ChapsasLinkedIn
    Keep coding merch: keepcoding.shop
    #dotnet #csharp #asyncawait

Komentáře • 123

  • @uncommonbg
    @uncommonbg Před 3 lety +33

    Thank you for the informative video, Nick. I would suggest that you should also do a video showing the advantages of Closures. Closures are not always bad and they can be very useful in certain situations.

  • @spectre0014
    @spectre0014 Před 2 lety +10

    Oh wow. Finding out about clrheap alone was totally worth watching the whole video. You did a good job explaining this and doing the walk through as well. Thanks for this.

  • @merthyr1831
    @merthyr1831 Před 2 lety +12

    Good preface on the video about premature optimisation. It's something as a newbie programmer I struggled with when 99% of my projects would never need high performance! And that 1% where performance was an issue, it's because of something much more simple than advanced topics.
    Still, I love seeing indepth looks into how C# works !

  • @brandonpearman9218
    @brandonpearman9218 Před 3 lety +21

    Nice vid. That ClrHeapAllocationAnalyzer is a great tip. Thanks

  • @othmanteffahi7788
    @othmanteffahi7788 Před 3 lety

    I love c# very much and i like people who help us to improve our knowledge, thank you so much bro . still with us 🙏🙏😁😁

  • @karsh001
    @karsh001 Před 3 lety +9

    Learned something new today. Thanks for that!

  • @PainFireFist
    @PainFireFist Před 3 lety

    I am using Linq lambda expressions all the time and was not aware of closures. Even though my applications run fine, I might be able to optimize memory usage with that new knowledge. Thanks!

  • @pqsk
    @pqsk Před 2 lety

    Beautiful video. Something I have never considered in all my years coding in c#

  • @giovannitresoldi5420
    @giovannitresoldi5420 Před 3 lety

    Very informative as usual. Thank you very much!

  • @easycodeunity3d14
    @easycodeunity3d14 Před 2 lety

    Thank you very much, Nick. Great job!

  • @Ziberac
    @Ziberac Před 3 lety

    Awesome content. Very useful for coding on IOT devices.

  •  Před 2 lety

    Awesome tip. Thank you for sharing

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

    Great video Nick!

  • @Rushhourz0
    @Rushhourz0 Před 3 lety +11

    I think another problem with this is, that from functional programming you learn that you should keep your functions as pure as possible (not influencing or being influenced from stuff outside the function). So a more correct lambda would be ...(x, number => x>number); //if that would even work it is
    So I wonder if that scenario would also allocate on the heap

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

      very good tip! this should not create a closure. of course this would not work in this exact situation, but still.

    • @berylliosis5250
      @berylliosis5250 Před 3 lety

      Here it wouldn't work, and it wouldn't make a closure if it did, but you're missing an important point: closures are still pure functions. Indeed, closures as a concept are taken from functional programming.
      Consider: a fundamental functional construct is currying, which makes functions with multiple arguments into functions with one argument that return functions. Closures are required for currying, because the parameters from the higher scope need to be passed to the parameters of the lower scope.
      So: closures are pure functions, as long as you don't mutate. So the example in the video is pure, but "x => x > number++" is not a pure function because it mutates the value of number, and therefore can provide different outputs for the same input

    • @wtfitsdrewbritton
      @wtfitsdrewbritton Před 2 lety

      This is a good suggestion for sure, keeping loose coupling between separate functions. If anything it makes debugging less stressful later on 🙃

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

    How that function is being called when you have taken off the variable from arguments list?

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

    It is any way to avoid allocation in your example with passing argument in another method?

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

    There is also Heap Allocation Viewer in Rider plugin to catch closure and more when allocation is happening

  • @berylliosis5250
    @berylliosis5250 Před 3 lety

    7:30 Why does it still allocate? Is it a LINQ internal allocation for some reason, or is it a language-level alloc?

  • @fedormorozov8255
    @fedormorozov8255 Před 2 lety

    I wonder if I make a field _savedNumber in class and put the number value to that field and use the field in lambda it would still allocates memory?

  • @MetaArcher
    @MetaArcher Před rokem

    do you have another video on how to tackle this issue? Like imagine I still want it to keep number as a parameter and use delegates and get rid off closures, is that possible?

  • @onlyrock1351
    @onlyrock1351 Před 2 lety

    Really nice explanation, tnx

  • @StockportJambo
    @StockportJambo Před 3 lety

    Nice vid and explanation.
    BTW, how long do you have to be a Patreon for before your name appears in the acknowledgments at the end? Mine isn't there.

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

      Hey Bil. Because I pre-record many videos in batches it might be that it is 2 weeks before your name starts appearing. I also publish many videos out of order of recording so it could be that it starts appearing and then disappears for a few videos and then starts appearing again.

  • @ivaniliev93
    @ivaniliev93 Před 2 lety

    Yep when you write such lambda closures in C++ you have to write what should be captured and how (e.g. by ref or value)

  • @jongeduard
    @jongeduard Před rokem

    That "lexical" thing is really from the wikipedia article about closures and this is certainly not the first video from someone where I hear criticism on that. That article seems to have improved a bit compared to how bad it was earlier, but it's just crazilly complex explanation of something very simple.
    The feature is most well known from JavaScript, but C# can do the same thing indeed and C++ has even a very advanced implementation in which you can make very precise decisions about what variables you exactly want to capture from the scope around and how (pointer, referene, etc).

  • @paulecampbell
    @paulecampbell Před 3 lety

    nice video young chap!

  • @cdarrigo
    @cdarrigo Před 3 lety

    Is there a way to pass an argument into the lands so it doesn't need the closure?

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

    Hey Nick, what IDE are you using on the video?

  • @user-bk7pc7nh2n
    @user-bk7pc7nh2n Před 3 lety +5

    Another useful video Niko. Thank you. These things can blow out of proportion in an environment loaded with asynchronous calls. Also, const-ness is something I am really missing in C#, having had a (bitter-sweet) taste of C++ development. And I find that c# developers lack the consideration (or discipline?) to set things to const if they are such. They thing that it is an overkill.

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

      It's mostly because C#'s readonly is trash. const is good for compile-time constant value types (not sure if structs work with it?), but readonly is pretty much useless because it only prevents changing which object you refer to - you can always mutate the object pointed to.
      It blew my mind how much I'd been missing when I first used a language with immutability by default.

  •  Před 3 lety

    It's a boxing effect ? Compiler optimization will fix it ?

  • @killer55909
    @killer55909 Před 3 lety +3

    Great Video, I enjoyed it very much, however I have a small question. When Reading the C# In Depth it struck me that Closures reminded me of Captured Variables.
    Am I wrong when I assumed that Captured Variables in C# is the same as Closures?

    • @nickchapsas
      @nickchapsas  Před 3 lety +3

      Yeah captured variables are captured in a closure class

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

      @@nickchapsas Awesome, thanks for the answer :D

  • @CharlesBurnsPrime
    @CharlesBurnsPrime Před 2 lety

    This is the in-depth geekery that I live for.

  • @buttonasas
    @buttonasas Před 3 lety

    What if you use a larger object instead of an int? It seems like it keeps just the value of the int instead of a reference... for some reason?

    • @nickchapsas
      @nickchapsas  Před 3 lety

      It allocates an int in a closure class as a class member which is a reference type allocation on the heap.

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

    The real issue that closures can cause is that they can hold on to references, preventing the garbage collector from cleaning them up, in a similar way to event handlers.
    Also if you have more than one lambda in a method they can capture more than you might expect.
    A few bytes of memory here or there doesn't generally matter too much, but a lot of allocations means a lot of garbage collections, or a reference being kept can prevent a large tree from being collected.
    For example you might have a CancellationTokenSource with some references to CancellationTokenRegistrations, with closures that capture an object that contains a MemoryStream, which keeps a reference to it's full buffer even after being disposed. Of course the CTS and CTR are disposable, so make sure to dispose them for this particular case, but it's just one example.

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

      “The advantage of GC is that you don’t need to manage memory anymore” - does anyone still believe this? :p Good points anyhow.

  • @pdn9609
    @pdn9609 Před 3 lety

    Ωραίος φίλε Νίκο

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

    Hey Nick, you seem to be future Tim Corey
    Fantabulous!

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

    Fun to see about a thousand warnings after installing that package xd

  • @ErnestoChavesChaves
    @ErnestoChavesChaves Před 3 lety

    Which IDE is that? vscode?

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

    Hi, Nick...I have been watching your videos. Some of them are ready great. Thank you. Just a friendly suggestion, can you slow down half of notch, so I can better understand you? :)

    • @snuffsix9598
      @snuffsix9598 Před 2 lety

      You can always play the video at slower speed?

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

    Yes, I'm into functional programming. How could you tell?

  • @jez9999
    @jez9999 Před 3 lety +7

    This is kind of a bummer because the "fix" is to just make your code more low level and less readable. I wish it were optimized automatically.

    • @Gastell0
      @Gastell0 Před 3 lety +3

      Not low enough, where's unsafe keyword? xD

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

    Love your videos. Here's a video idea... I've been working with visual studio for years and never really learned how to read the intelisense documentation. I mean for most stuff it's no issue but i have trouble reading how to call Dictionary with linq or selectmany etc. I just either google these features or remember them. It'd be neat to be able to read the intelisense documentation

  • @brunoccs
    @brunoccs Před 2 lety

    What's the alternative?

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

    Does visual studio have memory tab like in rider?

    • @AlexanderYaremchuk
      @AlexanderYaremchuk Před 8 měsíci +1

      yeah, I found it - Debug -> Windows -> Managed Memory
      take a snapshot
      open it by clicking link in the table
      and here you're - similar window with filter by type

    • @artemivanov2141
      @artemivanov2141 Před 8 měsíci

      @@AlexanderYaremchuk thanks alot!

  • @mariusopr
    @mariusopr Před rokem

    What if you use readonly instead of const?

  • @adamding3873
    @adamding3873 Před 3 lety

    This is a lamda expression, or the arrow function. If you use some variable from the caller's scope, then it must be generated on the fly. It does not only consume more memory, but also consume more CPU because it has to be re-compiled, because each function is a different instance.
    This is a really a hidden perf killer. Some developers may not realize it when they write the "bad" code.

    • @buttonasas
      @buttonasas Před 3 lety

      No it mustn't? The variables are mere parameters for the lambda, they don't _need_ to be compiled during runtime. I don't know how it is in practice for C# but it sounds like nonsense.

    • @adamding3873
      @adamding3873 Před 3 lety

      @@buttonasas It uses the parent scope's variable as part of its implementation, not an input parameter. So unless the lambda has a hidden context parameter referring to its parent scope and all its local variables, it has to be created after the parent scope is created.

    • @buttonasas
      @buttonasas Před 3 lety

      @@adamding3873 Method functions also have to be "created" after their parent class is "created". Perhaps, we are using different meanings for "compiled" and "created"?

    • @adamding3873
      @adamding3873 Před 3 lety

      @@buttonasas Method functions are the same for all instances of a class. So they are compiled once and cached for future use.
      A Lambda function w/o dependency on the parent scope, is also the same for all instances. So it is also compiled only once.
      However, with the dependency on the parent scope, it has to be compiled along with the scope. The parent scope, usually a function scope, starts when the function is called and ends when the function returns. So the lambda function is compiled after the parent function is called, and discarded when the function is returned.

    • @buttonasas
      @buttonasas Před 3 lety

      @@adamding3873 "Method functions are [...] compiled once and cached..." - do you mean that happens during runtime? I hope that isn't the case. ("cache" isn't a great word for it if it's never cleared, not even on system shutdown)
      I don't see why you couldn't reuse the lambdas in a similar fashion. And am still very sure some languages do reuse them just fine.

  • @crazyfox55
    @crazyfox55 Před 3 lety

    You should add a video about how this affects the new record type. I imagine that a class gets created to hold a copy of the record, but maybe its just a reference instead of a copy.

    • @nickchapsas
      @nickchapsas  Před 3 lety

      The record type is just a class like any other with the only difference that a bunch of code will be lowered to support the equality checks. It's just synstactic sugar around it's principles. The record is a full copy.

    • @crazyfox55
      @crazyfox55 Před 3 lety

      @@nickchapsas I thought records were passed by reference though. I need to do more research on when they are copied.

    • @nickchapsas
      @nickchapsas  Před 3 lety

      @@crazyfox55 They are passed by reference yeah. I thought you were talking about the with operator that allows "manipulation" but rather creates a whole new object.

    • @crazyfox55
      @crazyfox55 Před 3 lety

      @@nickchapsas okay cool, so it should just be like how classes are handled. Therfore less overhead than storing a whole new copy of the record.

  • @ronaldoperes1202
    @ronaldoperes1202 Před 2 lety

    How can I see that 'Memory Window' using Visual Studio?

    • @nickchapsas
      @nickchapsas  Před 2 lety

      I haven't used VS in so many years that I don't quite remember but I think there is something. Maybe someone can help with this one

  • @keyboard_g
    @keyboard_g Před 2 lety

    Sounds like this display class issue can be solved by the compiler. Maybe force it on the stack with a record instead of a full class.

    • @nickchapsas
      @nickchapsas  Před 2 lety

      Records are lowered to classes. They are not value types and even if they where, value types are not guaranteed to live on the stack unless they are ref structs

  • @clearlyunwell
    @clearlyunwell Před 3 lety

    👍

  • @ibrahimhussain3248
    @ibrahimhussain3248 Před 3 lety

    Does this significantly effect performance when the system has loads of RAM?

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

      The only way in which it does is by affecting memory allocation which in return affect garbage collection and garbage collection can affect performance. It is not something that you should worry about but it’s something you should be aware of

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

      Also.. loads of ram will not help. Even if your machine has 8GB it will not be available if you run a 32bit process for example. Only 2GB max for a process. That has to include all of the memory the CLR needs for housekeeping, so you would never hit that 2GB.

  • @maorhamami8106
    @maorhamami8106 Před 3 lety +3

    C# keep surprizing me. I was expecting the compiler to do it for me.
    If i recall java lamda only allow "final" variables to avoid that...

    • @ScottBlomquist
      @ScottBlomquist Před 3 lety +3

      Java's requirement for closure-captured variables to be final doesn't avoid allocating closure objects to store captured values. Instead, it avoids having to worry about changes to the captured values leaking into or out of the closure.

  • @Name-kj8ew
    @Name-kj8ew Před 3 lety

    Can somebody tell me, what is the IDE he works in?

  •  Před 3 lety

    What IDE is that ?

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

    Been programming C# since forever. Watched the whole video. Still haven't got the foggiest idea what a closure is :P

  • @sexcommunist
    @sexcommunist Před 3 lety +3

    JavaScript: *sweating uncontrollably*
    (In js every function is a clusure)

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

    Hair update 👀👍

  • @applepie7282
    @applepie7282 Před 2 lety

    closures are great, C#'s weak reference system is really sucks. I miss Swift 's weak-strong operators.

  • @CrapE_DM
    @CrapE_DM Před 3 lety

    You do realize it's always making a class, right? It doesn't get named with "Display" because it's not closing over a value, but it's still there as a Singleton.

    • @nickchapsas
      @nickchapsas  Před 3 lety

      This is partially correct. It's always creating a class but it's creating the display class on top of this to allocate value types inside that class, which is the problematic class. The class allocation isn't the problem. The captured variables allocation is. If you check the lowered code, the class created in the non-closure version is fundamentally doing something different than the Display class. One is holding the variables and has the delegate and is being initialized to re-allocate.

  • @bongangcobo
    @bongangcobo Před rokem

    numbers numbers.....mmh numbers ! lol XD

  • @modernkennnern
    @modernkennnern Před 3 lety +3

    Shouldn't the function be called "NumberOfNumbersOverNumber"? 🤔

  • @Yosso117
    @Yosso117 Před rokem

    Братан, хорош, давай, давай, вперёд! Контент в кайф, можно ещё? Вообще красавчик! Можно вот этого вот почаще?

  • @thebloxxer22
    @thebloxxer22 Před 3 lety

    There are 2 types of people, Those who like closure.

  • @alissonreinaldosilva1119

    Imagine chaining multiple LINQ calls

  • @ezra3871
    @ezra3871 Před 3 lety

    Huh never seen someone use rider on any youtube video

  • @WhiteDragon103
    @WhiteDragon103 Před 2 lety

    This is one of the more frustrating things about C#. A whole bunch of language features are needlessly rendered unusable for performance-critical code when the compiler could easily convert the .Count() method into a for loop with 0 allocations behind the scene.

  • @WilliamLDeRieuxIV
    @WilliamLDeRieuxIV Před 3 lety

    An anonymous lambda is compiler syntactic sugar that is meant to reduce the amount of code you have to write....the compiler will expand it for you (which could include inserting classes and methods). Solution....don't rely on compiler syntactic sugar and just write the code yourself.

    • @kimkimpa5150
      @kimkimpa5150 Před 2 lety

      More code = more maintenance cost though. So it's a tradeoff.

    • @WilliamLDeRieuxIV
      @WilliamLDeRieuxIV Před 2 lety

      @@kimkimpa5150
      The maintenance cost can also be increased by using these compiler convenience-features (by letting the compiler assume what was intended -- often getting it wrong).
      This leads to errors and bugs that can only be caught runtime through code debugging (including in that is the variety of systems and environments that the code might running in).
      All of that could be avoided by the programmer explicitly writing the code rather than relying on the compiler to figure it out.

    • @kimkimpa5150
      @kimkimpa5150 Před 2 lety

      @@WilliamLDeRieuxIV Yes, but the means by which we deconstruct our closures are arguably error prone in other areas since we have more code to deal with. At least with a short and sweet lambda closure, the overall amount of code is reduced, and the memory issue is both manageable, and as the video showed, statically analyzable at compile time. So I'm saying it's a fairly equal tradeoff.

  • @eramires
    @eramires Před 3 lety

    There is never anything that makes your life easier, that does not have a cost in performance.
    Every shortcut, has it's price.
    People need to get this on their heads. :-\
    Lazy coding, will always cost you something. :)

  • @CostaKazistov
    @CostaKazistov Před 3 lety

    Audio/video out of sync

  • @briannielsbergh
    @briannielsbergh Před rokem

    What's the point? It makes no difference in real life anyway.

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

    The more videos I watch about C# optimization, the more I think LINQ is just a bad idea. There are so many pitfalls and gotchas.

    • @MaximilienNoal
      @MaximilienNoal Před 3 lety

      Meh, it's fine 99.99 percent of the time. The 'pitfalls' are way overblown.

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

      It's not a pitfall, more is like balancing where really makes sense to use ling (especially chain more methods) and where simple foreach and if statement inside is more readable.
      I usually go this path when predicate (in Where, Count, Any etc.) is little more complex than simple oneliner.

    • @BittermanAndy
      @BittermanAndy Před 3 lety

      Optimising for development time is perfectly sensible, and usually the right thing to do. It's just a question of knowing what to do instead when "usually" breaks down.

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

    I like your videos but this one is so boaring , i could not end it