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

  Рет қаралды 82,996

Nick Chapsas

Nick Chapsas

2 жыл бұрын

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 2 жыл бұрын
👍🏽 “completely random number” picked. Lol
@jjxtra
@jjxtra 2 жыл бұрын
Needed to stay at 69 likes
@ericm6883
@ericm6883 2 жыл бұрын
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.
@emmepombar3328
@emmepombar3328 Жыл бұрын
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 2 жыл бұрын
Nick Chapsas is a lowkey master of comedy
@PedrosBanioles
@PedrosBanioles 2 жыл бұрын
Excellently presented and articulated presentation of allocations on Stack vs Heap. Really cleared up my understanding of it. Keep up the excellent work.
@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 2 жыл бұрын
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. 👍
@norbertn752
@norbertn752 2 жыл бұрын
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
@sanampakuwal
@sanampakuwal Жыл бұрын
Very good video. I don't have words how to thank you Nick!
@markf5931
@markf5931 2 жыл бұрын
Very nice explanation and covers the nuances. Any plans to make a similar video on garbage collector?
@user-qp8bt7gq4b
@user-qp8bt7gq4b 6 ай бұрын
Very deep and clear explanation, extra thanks for conclusions in the end of the video
@simoneurbani3303
@simoneurbani3303 2 жыл бұрын
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 2 жыл бұрын
"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 2 жыл бұрын
@@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.
@TedFanat
@TedFanat 2 жыл бұрын
Duuude! After almost every video I open IDE and try all that myself! This is awesome! Thanks for the HxD by the way
@spacerecluse
@spacerecluse 2 жыл бұрын
same situation
@berylliosis5250
@berylliosis5250 2 жыл бұрын
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.
@davidwright5719
@davidwright5719 2 жыл бұрын
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 жыл бұрын
the video is clearly click-bait
@iifnox
@iifnox 2 жыл бұрын
@@khaimdecoster3867 +1
@sigulers
@sigulers 2 жыл бұрын
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 жыл бұрын
Yeah, this is cringe-worthy.
@Miggleness
@Miggleness 2 жыл бұрын
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
@divyabharathi6582
@divyabharathi6582 9 ай бұрын
Great.. This video given more information to beginners and experienced.
@Time21
@Time21 2 жыл бұрын
Thanks Nick. You are always so informative.
@valeriy2986
@valeriy2986 2 жыл бұрын
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 2 жыл бұрын
I already use it. Im trying to minimise magic jumping around the files with keybindings because some people get confused.
@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
@andreaspetersen2662
@andreaspetersen2662 2 жыл бұрын
Thanks for sharing value information like this with us
@Andrei-gt7pw
@Andrei-gt7pw 2 жыл бұрын
Awesome info here 👍. Great job.
@alexandermykulych4165
@alexandermykulych4165 2 жыл бұрын
Thank you! Very clear explanation)
@RaterisimoCBA
@RaterisimoCBA 2 жыл бұрын
"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 !
@Krustachu
@Krustachu 2 жыл бұрын
again. One of the clearest and one of the best explanations on the subject.
@oldclient
@oldclient 2 жыл бұрын
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.
@IndellableHatesHandles
@IndellableHatesHandles Жыл бұрын
"boxing behaviour" heh, boxing 🥊
@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 ?
@GiorgiChikovani_FromGeorgia
@GiorgiChikovani_FromGeorgia 3 күн бұрын
Thanks Nick helped a lot
@der.Schtefan
@der.Schtefan Жыл бұрын
You could have expanded a bit more on how to allocated buffers like byte or int Arrays on the stack with stackalloc
@risingforce9648
@risingforce9648 8 ай бұрын
best explanation !
@kamikadze2185
@kamikadze2185 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
Watch @Shiv Kumar "string myth buster"
@Robert-G
@Robert-G 2 жыл бұрын
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)
@johnny_rain3226
@johnny_rain3226 Жыл бұрын
Premium topic + Premium explanation = thank you!
@sergeybenzenko6629
@sergeybenzenko6629 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 2 жыл бұрын
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 2 жыл бұрын
Except when you use stackalloc 😂
@nickchapsas
@nickchapsas 2 жыл бұрын
@@metaltyphoon Or using Span
@pw.70
@pw.70 2 жыл бұрын
HxD is a great program - used it for years. Great explanation, thanks.
@GameDevNerd
@GameDevNerd Жыл бұрын
You remember old OllyDbg? 😆
@gagikvardanyan3028
@gagikvardanyan3028 2 жыл бұрын
Great video, thanks.
@typinowly
@typinowly 2 жыл бұрын
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.
@MichaelMiller-rg6or
@MichaelMiller-rg6or 2 жыл бұрын
@1:33 420 is my favorite random value!
@filiecs3
@filiecs3 2 жыл бұрын
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 2 жыл бұрын
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?
@brianm1864
@brianm1864 2 жыл бұрын
You rock Nick! Thanks for another great video!
@user-ws5eq8bq5v
@user-ws5eq8bq5v 5 ай бұрын
Great video. just a small question. at 6:30 why there are 6 heap allocations. shouldnt it be 3?
@msafari1964
@msafari1964 7 ай бұрын
Very good 🎉
@VasilyPavlik
@VasilyPavlik 2 жыл бұрын
In other words value types inherit or depend on their parent. And allocated in a scope or context of the parent.
@leonardoformaggi7614
@leonardoformaggi7614 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
@@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 2 жыл бұрын
@@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 2 жыл бұрын
@@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 2 жыл бұрын
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)
@TCDooM
@TCDooM 2 жыл бұрын
Good to know.
@rolanddensonjr2464
@rolanddensonjr2464 2 жыл бұрын
You have gained a new subscriber my friend. I am always on the look out for educational streamers. Good woork!
@user-qz6ix7od3b
@user-qz6ix7od3b Жыл бұрын
this was gold
@Maskedmous
@Maskedmous 2 жыл бұрын
Rider Plugins -> Heap Allocations Viewer. It highlights most allocations in your code. That alone will save you a lot of trouble.
@websystema
@websystema 27 күн бұрын
Thank you
@akshaya1892
@akshaya1892 2 жыл бұрын
So the ref struct does not undergo boxing and unboxing in the string interpolation?
@ciberman
@ciberman 2 жыл бұрын
Can you make a tutorial about pinning objects and how pinning works internally? (fixed operator)
@Krokoklemmee
@Krokoklemmee 2 жыл бұрын
pinning just prevents an object to be moved around by the garbage collector (the GC does that to avoid memory fragmentation)
@arjunmenon2901
@arjunmenon2901 10 ай бұрын
When you applied string intrepolation to the value type ( 7:34 ) where there are two times the values are allocated?
@pramod.kulkarni9607
@pramod.kulkarni9607 8 ай бұрын
Great session tq very much😊...
@CarrigansGuitarClub
@CarrigansGuitarClub Жыл бұрын
Is there a tool in Visual Studio that I can use to view the Heap variables (free tool - not ReSharper)?
@cadiboy04
@cadiboy04 Жыл бұрын
Could you explain what happens when a struct contains a class type members? How does the memory was allocated in this case?
@marcol5374
@marcol5374 2 жыл бұрын
Thanks for the video! What is your IDE ?
@nickchapsas
@nickchapsas 2 жыл бұрын
It’s called JetBrains Rider
@carl-marvin
@carl-marvin 2 жыл бұрын
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.
@spacerecluse
@spacerecluse 2 жыл бұрын
Where will the method arguments be located with modifiers ref, out, in ?
@i_isak1451
@i_isak1451 2 жыл бұрын
this actualy made a lot of sense
@theman13300
@theman13300 2 жыл бұрын
"Just another random number..." lolol
@bookman5239
@bookman5239 Жыл бұрын
nice content!!! ilove it
@RicardoLacerdaCasteloBranco
@RicardoLacerdaCasteloBranco 2 жыл бұрын
Excelent!!!
@igorsentrxigorsentrx5550
@igorsentrxigorsentrx5550 2 жыл бұрын
what a great video!
@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?
@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.
@Picikak03
@Picikak03 2 жыл бұрын
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.
@olmanmora21
@olmanmora21 2 жыл бұрын
This is shocking, my entire life was a lie.
@sunefred
@sunefred 2 жыл бұрын
Subscribed twice
@KunalMukherjee3701
@KunalMukherjee3701 2 жыл бұрын
Is there a way to step into .net code (decompile) like how you did in rider in Visual Studio ?
@nickchapsas
@nickchapsas 2 жыл бұрын
Only if you are using Resharper
@gustavnilsson6597
@gustavnilsson6597 2 жыл бұрын
Yes there is experimental feature available in tools > options. However it might not be exactly the same.
@nerrierr
@nerrierr 2 жыл бұрын
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 жыл бұрын
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.
@wjc1514
@wjc1514 4 ай бұрын
What if a object be holded in a struct? It'll be allocated in heap or stack?
@romaklimenko
@romaklimenko 9 ай бұрын
Tak!
@winnie8614
@winnie8614 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
@@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 жыл бұрын
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];
@hero3616
@hero3616 2 жыл бұрын
Random numbers like 420 & 69 helped me understand the topic throughly. Thanks Nick.
@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?
@Itfwf
@Itfwf 2 жыл бұрын
When passing a ref types to a method then pointer to it will be allocated on stack, is that right?🤔
@dariogriffo
@dariogriffo 2 жыл бұрын
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.
@siratthebox
@siratthebox Жыл бұрын
Are `reference` types allocated on the heap or the stack?
@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.
@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
@KryptLynx
@KryptLynx Жыл бұрын
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
@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.
@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?
@YT-ry5zm
@YT-ry5zm 2 ай бұрын
yes
@ximility
@ximility 2 жыл бұрын
👍thx
@spacerecluse
@spacerecluse 2 жыл бұрын
if reference type is member of value type then Where will reference type be located ?
@RawCoding
@RawCoding 2 жыл бұрын
waiting for SOH vs LOH allocation!
@nickchapsas
@nickchapsas 2 жыл бұрын
Oh that one would be going waaaaay too deep
@alansinoracki8508
@alansinoracki8508 2 жыл бұрын
@@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 2 жыл бұрын
@@nickchapsas It's a good thing to be aware of! and we like it deep ;)
@ArunKumar-hx5ri
@ArunKumar-hx5ri 2 жыл бұрын
Which editor are you using?
@nickchapsas
@nickchapsas 2 жыл бұрын
JetBrains Rider
@peternguyen9382
@peternguyen9382 Жыл бұрын
which IDE Nick is using. I can not find the Memory windows in Visual Studio 2022.
@nickchapsas
@nickchapsas Жыл бұрын
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!
@sachinkainth9508
@sachinkainth9508 2 жыл бұрын
8:48 Why were the day, month and year each allocated twice though?
@milanciga
@milanciga 2 жыл бұрын
What is this HzD tool he is using for viewing memory? Where can I download it? Google seems to know nothing about it
@nickchapsas
@nickchapsas 2 жыл бұрын
HxD
@JonWoo
@JonWoo 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
@@nickchapsas Good video regardless
@rpchost
@rpchost Жыл бұрын
How to view the tabs (Debugger - Console - Parallel stacks - Debug output - Memory ) showing in your VS
@chbasitgill1
@chbasitgill1 2 жыл бұрын
❤️ beautiful content always
@azgan123
@azgan123 Жыл бұрын
Sharing this for free
@jonse5a
@jonse5a 2 жыл бұрын
Do you know of a good Linux equivalent of HxD?
@sigulers
@sigulers 2 жыл бұрын
Obviously an int that's part of an object on heap will be on heap. People are not wrong when they say value types are on stack. If people have "discussions" about this, it's because they're talking past each other.
@nickchapsas
@nickchapsas 2 жыл бұрын
Might be obvious to you but I’ve heard the opposite from a lot of people
@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.
@reoteuray9823
@reoteuray9823 Жыл бұрын
so variable is allocated in stack, but object which is ref stored in heap
@acidrazor
@acidrazor 2 жыл бұрын
dumb question... why should I care if its on the heap or the stack? whats the difference other than garbage collection?
@OlafSt
@OlafSt 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
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.
@deforesttthompson9299
@deforesttthompson9299 2 жыл бұрын
This video shows why universities still start students with c++.
@yevheniytymchishin8401
@yevheniytymchishin8401 2 жыл бұрын
Nothing understandable for me, but very interesting))
What is Span in C# and why you should be using it
15:15
Nick Chapsas
Рет қаралды 244 М.
What are record types in C# and how they ACTUALLY work
15:36
Nick Chapsas
Рет қаралды 115 М.
КАРМАНЧИК 2 СЕЗОН 4 СЕРИЯ
24:05
Inter Production
Рет қаралды 571 М.
why are switch statements so HECKIN fast?
11:03
Low Level Learning
Рет қаралды 351 М.
Why Startups Hate .NET and C#
10:38
Nick Chapsas
Рет қаралды 233 М.
Stackalloc and Spans
30:17
Coding Tutorials
Рет қаралды 7 М.
Solving One of the Biggest Array Issues in C#
10:36
Nick Chapsas
Рет қаралды 33 М.
Garbage Collection (Mark & Sweep) - Computerphile
16:22
Computerphile
Рет қаралды 230 М.
Stack vs Heap Memory - Simple Explanation
5:28
Alex Hyett
Рет қаралды 171 М.
What are Closures in C# and why you NEED to know about them
12:01
Nick Chapsas
Рет қаралды 73 М.