Where are types allocated in .NET and why people get it so wrong

Поділитися
Вставка
  • Опубліковано 26 тра 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 am going to break down where reference and value types get allocated in .C#. This is a very common question that pops up on interviews as well and peopl get is so wrong. There are some very simple rules that if you follow you are able to infer where something will be allocated and in this video I will show you how you can learn them as well.
    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
    #csharp #memory #clr

КОМЕНТАРІ • 219

  • @clearlyunwell
    @clearlyunwell 3 роки тому +128

    👍🏽 “completely random number” picked. Lol

    • @jjxtra
      @jjxtra 2 роки тому +1

      Needed to stay at 69 likes

  • @emmepombar3328
    @emmepombar3328 Рік тому +8

    04:30 Perhaps another explanation to the same thing: A value type is always on the "local memory frame" of its parent scope. In the application object type, it's the "local memory" of the object on the heap. In the method it's the "local memory" of the process, which is in this case the stack frame.

  • @liquidpebbles
    @liquidpebbles 3 роки тому +22

    Nick Chapsas is a lowkey master of comedy

  • @ericm6883
    @ericm6883 3 роки тому +34

    Please keep up the videos! I swear you put out videos, on specific topics I am currently learning, every single time. You have helped me push my skill set to the next level in many areas. Thank you very much.

  • @PedrosBanioles
    @PedrosBanioles 2 роки тому +1

    Excellently presented and articulated presentation of allocations on Stack vs Heap. Really cleared up my understanding of it. Keep up the excellent work.

  • @norbertn752
    @norbertn752 3 роки тому +3

    Nice video. 0:25 The part of newly created reference type is the reference itself, which will be allocated on stack. So I think it is right to say that reference types will allocate memory on heap and stack.

  • @gembel4023
    @gembel4023 2 роки тому

    That was very useful. especially the wrap-up section at the end with the text. Thank you very much Nick

  • @Zefurionx
    @Zefurionx 2 роки тому

    Thats a video that totally blew my mind. Great effort. Thanks for putting this out, I will probably use it in my next interview!

  • @nerrierr
    @nerrierr 3 роки тому +1

    Dude, I had exactly the same argument/discussion about where value types are allocated, exactly on the same day you uploaded your video :). If I had known I would have sent your link and save a lot of time explaining :).

  • @millch2k8
    @millch2k8 2 роки тому

    Thank you for explaining... This highlighted a number of subtleties I didn't have a clear picture of. 👍

  • @berylliosis5250
    @berylliosis5250 3 роки тому +10

    That's interesting, I wouldn't have thought this distinction would need to be made. I've probably said the same thing before, but to me it's natural that the primitive components of reference types are stored on the heap (otherwise, what would "reference types are stored on the heap" even mean..?)
    I'm not incredibly knowledgeable about .NET internals, but I think local primitive types can also be register allocated as an optimization? It would make no sense if they couldn't. I suppose the only examples where you showed that they were on the stack required it because of pointers, so they probably can be.

  • @oldclient
    @oldclient 2 роки тому +5

    The video contains good expertise on how the memory allocations is working in .NET tech. Btw, people aren't wrong about it. They "understand it" that any primitive type incapsulated into an object is a part of that object (like a package or frame) and is stored into heap. Thanks for interpolation investigation. I had not time to investigate its boxing behaviour.
    This is why I like the modern C#. Being a very high level coding language, it has many tools to control the memory in different scenarios.

  • @markf5931
    @markf5931 3 роки тому +2

    Very nice explanation and covers the nuances. Any plans to make a similar video on garbage collector?

  • @davidwright5719
    @davidwright5719 2 роки тому +74

    Did anyone think that “value types are allocated on the stack” meant value types inside heap-allocated reference types? You only have to think about how objects are represented in memory to realize it can’t work that way.

    • @khaimdecoster3867
      @khaimdecoster3867 2 роки тому +18

      the video is clearly click-bait

    • @iifnox
      @iifnox 2 роки тому +2

      @@khaimdecoster3867 +1

    • @sigulers
      @sigulers 2 роки тому +12

      Starting to watch video, preparing to be amazed to learn about some intricate details and exceptions to the rule, and then... Really? An int that's a field of a class is not on the stack? Really??!!! That's what you got? This is your argument for why people are wrong? Really?? ...ok, calming down now.

    • @hashcode83
      @hashcode83 2 роки тому +3

      Yeah, this is cringe-worthy.

    • @Miggleness
      @Miggleness 2 роки тому +4

      they are. Value type in a reference type (e.g member int) are maintained in the stack at all times. CLR maintains a “value-to-object-owner” dictionary that links the value type in the stack to the reference type that owns it.
      Now, when the current stack frame is removed, the value types in object instances are copied one level down the stack. That’s how copy-by-value semantics work. The value-to-owning-object dictionary is then updated. This explains why function calls are expensive.
      /s

  • @RaterisimoCBA
    @RaterisimoCBA 2 роки тому +8

    "int number = 420" ... I see what you did there hehe This is such a great practical explanation of the stack and heap, I feel most of the times when we are learning these abstract concepts there is a lack of concrete examples that help solidify the knowledge. Great job once again, Nick !

  • @sanampakuwal
    @sanampakuwal Рік тому

    Very good video. I don't have words how to thank you Nick!

  • @TedFanat
    @TedFanat 3 роки тому +1

    Duuude! After almost every video I open IDE and try all that myself! This is awesome! Thanks for the HxD by the way

  • @user-qp8bt7gq4b
    @user-qp8bt7gq4b 6 місяців тому

    Very deep and clear explanation, extra thanks for conclusions in the end of the video

  • @simoneurbani3303
    @simoneurbani3303 3 роки тому +8

    First of all, congratulations on all your videos, always interesting and very well explained.
    It would be nice if you can do some video on serverless architecture based on microservices, especially how to build a web API using Azure function and c#, integration with CosmosDb, strong authentication, best practices, tests, etc.
    It's just an idea, but I think it would be a very interesting series of videos.

    • @volt4700
      @volt4700 3 роки тому

      "By supporting me with this tier you will gain access to the source code for all the videos published. There is currently no source code that is excluded from this tier but this might change in the future are I am planning to have a long running series on Microservices soon which might be on a different tier." - From Nick's patreon

    • @simoneurbani3303
      @simoneurbani3303 3 роки тому

      @@volt4700 Thanks!

    • @IndellableHatesHandles
      @IndellableHatesHandles Рік тому

      @@volt4700 Why on Earth would you want the exact source code used in the videos? It's literally just silly teaching examples.

  • @valeriy2986
    @valeriy2986 3 роки тому +3

    Super useful video! Thanks!
    BTW: you could assign shortcut for Line Move Up/Down.(f.e. in VS: Alt + up/down arrow. Minor thing, but very time saving :)

    • @nickchapsas
      @nickchapsas  3 роки тому +10

      I already use it. Im trying to minimise magic jumping around the files with keybindings because some people get confused.

  • @Krustachu
    @Krustachu 3 роки тому +6

    again. One of the clearest and one of the best explanations on the subject.

  • @Time21
    @Time21 3 роки тому

    Thanks Nick. You are always so informative.

  • @user-wv8kg6qx8p
    @user-wv8kg6qx8p 8 місяців тому

    Outstanding of all other reference types, an Array instance can be allocated on the stack by 'stackalloc' keyword and can be used by a pointer to its first element

  • @theman13300
    @theman13300 3 роки тому +12

    "Just another random number..." lolol

  • @divyabharathi6582
    @divyabharathi6582 9 місяців тому

    Great.. This video given more information to beginners and experienced.

  • @danielvanpletzen2911
    @danielvanpletzen2911 2 роки тому

    Thanks for the great video, When the boxed int's get added to the heap why is each int being added twice vs once ?

  • @Andrei-gt7pw
    @Andrei-gt7pw 2 роки тому

    Awesome info here 👍. Great job.

  • @andreaspetersen2662
    @andreaspetersen2662 2 роки тому

    Thanks for sharing value information like this with us

  • @der.Schtefan
    @der.Schtefan Рік тому +1

    You could have expanded a bit more on how to allocated buffers like byte or int Arrays on the stack with stackalloc

  • @kamikadze2185
    @kamikadze2185 3 роки тому +3

    Hmm, I've heard somewhere, that string interpolation is lowered to concatenation wherever it's possible, and string.format if it can't be simply concatenated in newer versions of dotnet

    • @nickchapsas
      @nickchapsas  3 роки тому +6

      So it can actually be both. If you are dealing wiht strings then it will use string.Concat but if you have things that are not strings then it will use string.Format instead.

    • @saurabhchauhan232
      @saurabhchauhan232 3 роки тому

      Watch @Shiv Kumar "string myth buster"

    • @Robert-G
      @Robert-G 3 роки тому +1

      c# 10 will try to build it constant. It will even allow to use interpolations in constants, if they are constant (not format/culture-dependent)

  • @alexandermykulych4165
    @alexandermykulych4165 3 роки тому +1

    Thank you! Very clear explanation)

  • @sergeybenzenko6629
    @sergeybenzenko6629 3 роки тому +2

    I would add one more bullet.
    6. Value type declared as a collection item (array, list, etc.) => Heap.
    This might be considered a special case of "member of class", but still.

    • @nickchapsas
      @nickchapsas  3 роки тому +3

      Yeah this would fall under the member of class. Arrays were not inthe primitives list so it was implied that they are reference types which always go on the heap.

    • @metaltyphoon
      @metaltyphoon 3 роки тому

      Except when you use stackalloc 😂

    • @nickchapsas
      @nickchapsas  3 роки тому +3

      @@metaltyphoon Or using Span

  • @GiorgiChikovani_FromGeorgia
    @GiorgiChikovani_FromGeorgia Місяць тому

    Thanks Nick helped a lot

  • @user-ws5eq8bq5v
    @user-ws5eq8bq5v 6 місяців тому

    Great video. just a small question. at 6:30 why there are 6 heap allocations. shouldnt it be 3?

  • @olmanmora21
    @olmanmora21 3 роки тому +21

    This is shocking, my entire life was a lie.

  • @arjunmenon2901
    @arjunmenon2901 11 місяців тому

    When you applied string intrepolation to the value type ( 7:34 ) where there are two times the values are allocated?

  • @pw.70
    @pw.70 2 роки тому

    HxD is a great program - used it for years. Great explanation, thanks.

    • @GameDevNerd
      @GameDevNerd Рік тому

      You remember old OllyDbg? 😆

  • @typinowly
    @typinowly 2 роки тому +5

    Well, I always view it like that: RefTypes live on the heap, ValueTypes prefer the stack, but will go on the heap if they are fields of something in the heap.

  • @filiecs3
    @filiecs3 3 роки тому +3

    Good explanation, but I kind of think that using it to say that the common phrase is 'wrong' is just a tiny bit pedantic. When people say 'reference types are allocated on the heap, value types on the stack' they still mean the behavior you describe, or at least they should.
    Otherwise, they would actually think that *everything* is allocated on the stack since all reference types are just compositions of value types (eg. primitives and pointers/references).

    • @nickchapsas
      @nickchapsas  3 роки тому +3

      You'd be very surprised how many times I've got a wrong answer on this question. In 300 interviews, at least 150-160 candidates answer this wrong and when I give them this option to elaborate, they do say "always". So yeah, this is not about being pedantic but rather being accurate. It might be a no-brainer for you but it's be wrong in so many blogs that people just thnk it's how it is.

    • @etopowertwon
      @etopowertwon 2 роки тому

      @@nickchapsas yes, it's about being pedantic. Stop conducting interviews and delegate it to someone competent. You are the worst type of interviewer. Nobody loves "Guess what I really meant to ask" and nobody thinks that classes are split into stack.
      By the way, you are very wrong. Reference types are not always allocated on the heap. Sometimes they are allocated in nowhere because system ran out of memory. If there is no heap - they are not allocated there.
      See how stupid it is?

  • @cadiboy04
    @cadiboy04 Рік тому

    Could you explain what happens when a struct contains a class type members? How does the memory was allocated in this case?

  • @CarrigansGuitarClub
    @CarrigansGuitarClub Рік тому

    Is there a tool in Visual Studio that I can use to view the Heap variables (free tool - not ReSharper)?

  • @johnny_rain3226
    @johnny_rain3226 Рік тому

    Premium topic + Premium explanation = thank you!

  • @Maskedmous
    @Maskedmous 2 роки тому

    Rider Plugins -> Heap Allocations Viewer. It highlights most allocations in your code. That alone will save you a lot of trouble.

  • @MichaelMiller-rg6or
    @MichaelMiller-rg6or 3 роки тому +1

    @1:33
    420 is my favorite random value!

  • @carl-marvin
    @carl-marvin 2 роки тому +1

    I don't agree with your saying 'value types are sometimes allocated on the heap'. True is, their data will be nested between the object data on the heap but it won't get its own heap allocation: it will not have it's type nor a sync block index written together with it's data. Furthermore the garbage collector cannot free the value type instatiation independently from its holding object.
    So value types are not instantiated directly in the heap. They are also not always instantiated on the stack. They are instantiated within the scope of their creator. Can be some stack or heap memory.

  • @akshaya1892
    @akshaya1892 2 роки тому

    So the ref struct does not undergo boxing and unboxing in the string interpolation?

  • @ciberman
    @ciberman 3 роки тому +2

    Can you make a tutorial about pinning objects and how pinning works internally? (fixed operator)

    • @Krokoklemmee
      @Krokoklemmee 3 роки тому

      pinning just prevents an object to be moved around by the garbage collector (the GC does that to avoid memory fragmentation)

  • @spacerecluse
    @spacerecluse 2 роки тому

    Where will the method arguments be located with modifiers ref, out, in ?

  • @gagikvardanyan3028
    @gagikvardanyan3028 2 роки тому

    Great video, thanks.

  • @leonardoformaggi7614
    @leonardoformaggi7614 3 роки тому

    Excellent video! I just missed one topic, which is, structs with reference types as properties. Where do they go? I'd assume heap?

    • @alanramirezherrera7485
      @alanramirezherrera7485 3 роки тому +1

      IIRC, if it's stored on a reference type it goes on the heap, if it's created on a stack frame it goes on the stack.
      Keep in mind that the struct is created on a region (either stack or heap) but reference types always go on the heap.
      For example, assuming this
      struct A
      {
      object B;
      };
      If you create A on a stack frame the struct itself is created on the stack but the reference type is created on the heap, you can see B as a "pointer" (it is not) so you store memory to store that "pointer" and the object itself resides on other memory region

    • @leonardoformaggi7614
      @leonardoformaggi7614 3 роки тому

      @@alanramirezherrera7485 that's very interesting, thank you. So I guess the A wouldn't be cleaned from memory stack until B was collected from the heap? If I pass B around, would the framework clean A and keep B in the heap?

    • @alanramirezherrera7485
      @alanramirezherrera7485 3 роки тому +1

      @@leonardoformaggi7614 no, A is freed when the stack gets destroyed but the reference type will be freed when the garbage collector reclaims memory, so, for example
      object Method()
      {
      var a = new A();
      return a.B;
      } // A is freed when the method ends, a.B outlives this stack frame
      static void Main()
      {
      var b = Method();
      } // when the garbage collector decides to reclaim memory and a.B is not referenced anymore, a.B gets freed

    • @leonardoformaggi7614
      @leonardoformaggi7614 3 роки тому

      @@alanramirezherrera7485 thank you, that's very good to know because it's not always that a struct will have only value types and knowing when they will get destroyed is very useful.

    • @TedFanat
      @TedFanat 3 роки тому

      It's very easy - the struct will be stored on the stack and will contain 64bit (depends on your OS bitness) value(pointer) which is the address of the object somewhere in the memory. It's very easy to demonstrate with some demo project and HxD)

  • @Picikak03
    @Picikak03 2 роки тому +1

    13:05
    Could you please explain why the value-type properties doesn't appear in the instances? It must be allocated in the heap, but that non-appearance's confusing me.
    They're indeed wrappers on fields, but why don't we see the fields allocation? Is that a Rider's issue or what?

    • @jongeduard
      @jongeduard Рік тому

      I am not a Rider user, and not viewing the values could be a bug, but I still need to correct you on "why don't we see the fields allocation".
      The whole point is that value types are in fact not allocated at all. You declare them in code for the compiler, but they do not exist as individual data blocks at runtime.
      Local stacks and reference types are the only thing actually being allocated (a location in memory is reserved, and the address of the start location is returned), simply with a size large enough to fit the values one by one inside them.
      The funny thing is that the reference types themselves hardly need any memory at all when they had no fields. It's really the value types that give them their size.
      The reference type instance itself just has an address number, which is 32 or 64 bit depending on your architecture.

  • @brianm1864
    @brianm1864 3 роки тому +1

    You rock Nick! Thanks for another great video!

  • @rolanddensonjr2464
    @rolanddensonjr2464 3 роки тому

    You have gained a new subscriber my friend. I am always on the look out for educational streamers. Good woork!

  • @marcol5374
    @marcol5374 2 роки тому

    Thanks for the video!
    What is your IDE ?

  • @denisanovotna2418
    @denisanovotna2418 Рік тому

    So if ref struck is then used in the Console.WriteLine it will still be allocated on the heap because of boxing. Is that correct or have i misunderstood?

  • @deforesttthompson9299
    @deforesttthompson9299 2 роки тому +1

    This video shows why universities still start students with c++.

  • @websystema
    @websystema Місяць тому

    Thank you

  • @sabitkondakc9147
    @sabitkondakc9147 2 роки тому

    How about volatile keyword, does it only apply to value types? I just tested it for arrays and it didn't work out , you know the allocation of [i, j] over [j, i] , according to some pages [i, j] creates a block of data on cpu cache so that it's easier to retrieve data out of it but what if I use volatile int[N, N] , obviously there's something wrong with the theory.

  • @hero3616
    @hero3616 2 роки тому +1

    Random numbers like 420 & 69 helped me understand the topic throughly. Thanks Nick.

  • @suchtendolp644
    @suchtendolp644 2 роки тому

    And referencetypes in a struct are stored in the heap, right?

  • @juanmiguel431
    @juanmiguel431 Рік тому

    What about static members of a class? Are they located on the heap?

  • @VasilyPavlik
    @VasilyPavlik 3 роки тому +1

    In other words value types inherit or depend on their parent. And allocated in a scope or context of the parent.

  • @bookman5239
    @bookman5239 Рік тому

    nice content!!! ilove it

  • @risingforce9648
    @risingforce9648 9 місяців тому

    best explanation !

  • @TCDooM
    @TCDooM 2 роки тому

    Good to know.

  • @wjc1514
    @wjc1514 5 місяців тому

    What if a object be holded in a struct? It'll be allocated in heap or stack?

  • @Itfwf
    @Itfwf 3 роки тому +2

    When passing a ref types to a method then pointer to it will be allocated on stack, is that right?🤔

    • @dariogriffo
      @dariogriffo 2 роки тому +1

      Yes. Even inside the method when you define or declare an object there is a variable created on the stack that points to the memory on the heap that contains the object. So an object allocation can indeed mean 2 allocations: 1 in the stack: the variable holding the memory address, and 2 the object itself. To align with what Nick explained if that variable is actually a property of a class it will be a heap allocation pointing to a heap address.

  • @CraigBoucher
    @CraigBoucher 2 роки тому

    Don't points 3 and 4 at the end overlap? Couldn't you combine them and say, "A value type declared as a member is allocated with the parent?
    Can members be declared separately from their parents -- regardless of whether the parent is a class or struct?

  • @msafari1964
    @msafari1964 8 місяців тому

    Very good 🎉

  • @KunalMukherjee3701
    @KunalMukherjee3701 3 роки тому +1

    Is there a way to step into .net code (decompile) like how you did in rider in Visual Studio ?

    • @nickchapsas
      @nickchapsas  3 роки тому +2

      Only if you are using Resharper

    • @gustavnilsson6597
      @gustavnilsson6597 3 роки тому

      Yes there is experimental feature available in tools > options. However it might not be exactly the same.

    • @nerrierr
      @nerrierr 3 роки тому

      You can use dotpeek to generate PDBs from assemblies (it an external tool, not part of visual studio, in fact it is developed by JetBrains the same people behind rider) but you can then load the newly created external PDB symbols in Visual Studio. At one point people were developing an VS Plugin for this but haven't heard anything about it since the initial discussion.
      If your specifically interested only in the code that is part of the dot net framework, Microsoft is actually publishing their symbols online, you just need to enable the Microsoft symbols server from the debug options menu and uncheck the "Enable Just My Code" option.
      And in case you just want to look at the dot net source code you can find it here (also on github): referencesource.microsoft.com/

    • @sabitkondakc9147
      @sabitkondakc9147 2 роки тому +1

      Visual Studio has .Net Object Allocation Tracing Feature, Shortcut : Alt + F2 , Menu => Debug ->Performance Profiler , and there are other options too , visual studio has many hidden features.

  • @pramod.kulkarni9607
    @pramod.kulkarni9607 9 місяців тому

    Great session tq very much😊...

  • @i_isak1451
    @i_isak1451 2 роки тому

    this actualy made a lot of sense

  • @atabayilker
    @atabayilker 2 роки тому

    The dude is low budget Elon Musk over there with all the 69s and 420s :D but I adore your work, I've learned quite a bit just watching your videos.

  • @sunefred
    @sunefred 2 роки тому

    Subscribed twice

  • @milanciga
    @milanciga 3 роки тому

    What is this HzD tool he is using for viewing memory? Where can I download it? Google seems to know nothing about it

  • @peternguyen9382
    @peternguyen9382 Рік тому

    which IDE Nick is using. I can not find the Memory windows in Visual Studio 2022.

    • @nickchapsas
      @nickchapsas  Рік тому +1

      I'm using JetBrains Rider

    • @peternguyen9382
      @peternguyen9382 Рік тому

      @@nickchapsas Hello Nick! I did not expect the answer from you! I just want to say thanks so much for your awesome work! greeting from VietNam!

  • @igorsentrxigorsentrx5550
    @igorsentrxigorsentrx5550 3 роки тому

    what a great video!

  • @nomadshiba
    @nomadshiba Рік тому

    4:10 how is that invalidate in reference types allocated on heap and value types allocated on the stack?
    number is part of the reference type, of course its on the heap
    and reference to that reference type is on stack btw
    stack is about code execution and heap is about storing stuff

  • @user-qz6ix7od3b
    @user-qz6ix7od3b Рік тому

    this was gold

  • @RicardoLacerdaCasteloBranco
    @RicardoLacerdaCasteloBranco 2 роки тому

    Excelent!!!

  • @ArunKumar-hx5ri
    @ArunKumar-hx5ri 2 роки тому

    Which editor are you using?

  • @KryptLynx
    @KryptLynx 2 роки тому

    I think, there is a default assumption is going on: “the question is related to allocating instances inside method call only”. I mean, I know about all of that things, but my answer was the wrong one in scope of your video

  • @JonWoo
    @JonWoo 3 роки тому +9

    This seems a bit exaggerated. It's just easy to say value types are allocated on the stack and reference types on the heap as far as the call stack goes. That's not wrong. If you asked a somewhat experienced dev where are the fields on an instance are allocated, most would know it's on the heap. If it weren't, the heap would never be used.

    • @nickchapsas
      @nickchapsas  3 роки тому +7

      It's been said wrong so many times that new developers take it for granted without knowing the context behind it. For you, an experienced dev, it might be a no brainer, but at least half the devs I've spoken to get it wrong.

    • @JonWoo
      @JonWoo 3 роки тому

      @@nickchapsas Good video regardless

  • @rpchost
    @rpchost 2 роки тому

    How to view the tabs (Debugger - Console - Parallel stacks - Debug output - Memory ) showing in your VS

  • @siratthebox
    @siratthebox Рік тому

    Are `reference` types allocated on the heap or the stack?

  • @RawCoding
    @RawCoding 3 роки тому +2

    waiting for SOH vs LOH allocation!

    • @nickchapsas
      @nickchapsas  3 роки тому

      Oh that one would be going waaaaay too deep

    • @alansinoracki8508
      @alansinoracki8508 3 роки тому

      @@nickchapsas That's pretty important though. Then there is concept of pooling and compacting which most developers dealing with LOH should know. Not knowing it might bite you both memory and performance wise

    • @RawCoding
      @RawCoding 3 роки тому

      @@nickchapsas It's a good thing to be aware of! and we like it deep ;)

  • @sachinkainth9508
    @sachinkainth9508 2 роки тому

    8:48 Why were the day, month and year each allocated twice though?

  • @romaklimenko
    @romaklimenko 10 місяців тому

    Tak!

  • @acidrazor
    @acidrazor 3 роки тому +2

    dumb question... why should I care if its on the heap or the stack? whats the difference other than garbage collection?

    • @OlafSt
      @OlafSt 3 роки тому +1

      Allocating a 4-Byte-Integer on the stack is a simple "add esp,4" for the cpu. Allocating the same integer on the Heap requires Heap Management to find a suitable place, note where and who accesses that integer and, finally, bother the GC with that Int.

    • @jackkendall6420
      @jackkendall6420 3 роки тому +1

      In reality, most of the time, you shouldn't care. There is a real performance difference but it's only something to worry about if you've profiled your program and found an issue with allocations. It's still interesting and good to learn about though.

    • @bragoen
      @bragoen 3 роки тому

      Depending on the type of applications you write, you shouldn't ever bother, or your life is going to depend on it. The former is far far more common.

    • @nickchapsas
      @nickchapsas  3 роки тому +4

      The difference is garbage collection and it's a pretty important one. Of course performance is contextual so it really comes down to the application itself. For 95% of all .NET apps you shouldn't care, but you should be aware because when it comes time to investigate a memory leak, understanding this stuff will be extremely helpful.

    • @tassosk966
      @tassosk966 3 роки тому

      For example, if you want to implement a computational geometry algorithm in c#, using struct instead of a class you might notice some performance benefits. There are some general directions on when to use a struct but at the end all comes down to benchmarking, profiling and optimising the code.

  • @MrGsafe
    @MrGsafe 2 роки тому

    Are values types always allocated on stack/heap? Can value type not be allocated at all and be in registers?

    • @rafaelrosa3841
      @rafaelrosa3841 2 роки тому

      Registers? Maybe some small values types that fits on register inside function could be allocated directly on register I guess.

    • @holger_p
      @holger_p Рік тому

      No, not in C#. At least you cannot enforce it. If you turn on "optimize code" they will be used heavily. To encourage it, you should have a short lifespan of local variables.

  • @spacerecluse
    @spacerecluse 2 роки тому

    if reference type is member of value type then Where will reference type be located ?

  • @barmetler
    @barmetler 2 роки тому

    So the main point is that if a valuetype is instantiated inside something on the heap, that it will be on the heap? Isn't that kinda obvious?
    I always understood the difference between struct and class in terms of C++
    C# struct = "Foo foo{};"
    C# class = "Foo *foo = new Foo();"
    With Foo being either a class or struct (In C++ they are both the same, except for default access modifiers)
    With this understanding, it is obvious that a field of type "Foo" inside an object on the heap, will also be on the heap.
    I guess the only interesting part is the boxing topic, I didn't know that it would allocate everything twice.
    And the ref struct thing.

  • @reoteuray9823
    @reoteuray9823 Рік тому

    so variable is allocated in stack, but object which is ref stored in heap

  • @winnie8614
    @winnie8614 3 роки тому +1

    From your intro statement I thought you would show an example where an object could be allocated on a stack. Sadly it's only possible in Java.
    edit: I wasn't listening good, Nick says that Ref-types are always on a heap.

    • @Krokoklemmee
      @Krokoklemmee 3 роки тому

      who says that it's only possible in Java?
      I'm not even sure if Java allows/does it, at least not that I've ever heard of

    • @winnie8614
      @winnie8614 3 роки тому

      @@Krokoklemmee When I told about Java i meant between .net and Java, as .net vas obviously made as MS Java, don't know if it is in other languages. And java has Escape Nalisis for ages. Go's escape analysis is a really different beast and it woks differently -- to move structs from stack to heap. When you say that it's possible not on;ly in java what do you mean? I do not recall a lot of managed languages. And I mean an automatic move from heap to stack in GC languages, not things like possible in C++ when user has full control of allocations.
      In java, JIT could perform analysis that value don't escape current thread and won't be stored in global variables, then it allocates Object in heap. Sadly it's not possible in dotnet, last time I've checked -- there was open issue on dontent-core repository. github.com/dotnet/runtime/issues/11192
      But java lacks structs(AKA value types(they work on it, but really slowly)). Dotnet has structs and the possibility to allocate "arrays" of structs on the stack using *stackalloc* keyword. This is pretty useful, but hard to use. The addition of escape analysis would be great.
      P.S. en.wikipedia.org/wiki/Escape_analysis#Example_(Java)
      GO: medium.com/a-journey-with-go/go-introduction-to-the-escape-analysis-f7610174e890 in Go it's used when you pass a reference to variable into other function. The compiler can decide that this variable should live on heap, not stack.

    • @carl-marvin
      @carl-marvin 2 роки тому +1

      Normally all kind of Arrays are also Reference Type and therefore allocated on the Heap. There is a struct Span though which, when used with stackalloc, can create an array on the stack:
      int [] myHeapArray = new int [100];
      Span myStackArray = stackalloc int[10];

  • @chbasitgill1
    @chbasitgill1 3 роки тому +1

    ❤️ beautiful content always

  • @ximility
    @ximility 3 роки тому

    👍thx

  • @welltypedwitch
    @welltypedwitch 2 роки тому +2

    I think you're wrong.
    Yes, the statement 'Value types are always allocated on the stack' is misleading.
    Still, value types are never *allocated* on the heap!
    In your Application example, the int was never actually allocated at all. It was *stored* on the heap, but it didn't allocate that heap space. The space had already been allocated by the reference type (Application) and the value type just occupied this already allocated space.
    Also, when a value type is boxed, it is implicitly converted to a hidden reference type which contains the value type. You might not see the intermediate type, but it is definitely a reference type -- that is the whole point of boxing -- so there are still no value types being allocated on the heap. All that happens is that a reference type with a value typed field is allocated on the heap, which is exactly identical to your other example.
    If you actually allocate space for a value type by e.g. by binding it to a variable, then that space will *always* be allocated on the stack, so in a way the initial premise is technically not even wrong -- although it is a little misleading.

    • @nickchapsas
      @nickchapsas  2 роки тому

      The fields of a reference type are allocated with their parent so yeah they are allocated on the heap. Not the stack. You can try that by trying to have a field that is a Span. You can’t because Spans can’t be allocated on the heap.

    • @deforesttthompson9299
      @deforesttthompson9299 2 роки тому +2

      @@nickchapsas I think that @Prophet is correct here. When you instantiate a class, the allocator allocates a block of memory with respect to the size of the class. It doesn't care what the fields are. The class is allocated, not the fields. If you ignore templates and generics, the runtime doesn't care what the fields of a class are that all happens at compile time.

    • @scuroguardiano9787
      @scuroguardiano9787 5 місяців тому

      @@nickchapsas I may be wrong but I feel there's a difference. Value type will be stored on the heap as part of an instance of a class that contains this value type. But reference type could be stored as a reference to another place on the heap.
      Example:
      var someInstance = new SomeClass(); // space for Number property was allocated here.
      someInstance.Number = 5; // To assign value type we do not have to make any additional allocation
      someInstance.ReferenceTypeInstance = new OtherClass(); // We make another allocation here, ReferenceTypeInstance will be stored as a reference to newly allocated location on the heap
      So IMO saying that value types are allocated on the heap is a little bit confusing. But I can understand that people can think that it's literally stored on stack every single time, in that case I think they don't know what stack and heap are and they should taste some C programming language to learn ^^

  • @azgan123
    @azgan123 Рік тому

    Sharing this for free

  • @mohamedsalman3205
    @mohamedsalman3205 2 роки тому

    What is it with 69 and 420? ;-) On a more serious note, please let us know how you are learning these things. What methods do you follow? How did you get all these knowledge? I'm sure most of us who want to improve ourselves has these questions.

  • @warny1978
    @warny1978 2 роки тому

    That's obvious, but it's better when you say it.