Memory allocation for collections in .NET

前端 未结 2 2051
忘掉有多难
忘掉有多难 2021-01-19 15:33

This might be a dupe. I did not find enough information on this.

I was discussing memory allocation for collections in .Net. Where is the memory for elements alloca

相关标签:
2条回答
  • 2021-01-19 16:02

    The elements will also reside in the heap (in an array, that's how List works internally).

    In principle, only local variables and arguments are be allocated on the stack and everything else goes on the heap (unless you use rare things such as stackalloc, but you don't need to worry about that)

    0 讨论(0)
  • 2021-01-19 16:09

    The elements will be created on the heap. The only thing that lives on the stack is the pointer (reference) to the list (List<> is a reference type)

    0 讨论(0)
提交回复
热议问题