Pergunta de entrevista da empresa Siemens Digital Industries Software

Difference between Heap and Stack

Respostas da entrevista

Sigiloso

23 de fev. de 2011

all objects get stored in heap while all value type get stored in stack..heap automatically maage memory using garbage collection..while in stack explicitly memory is managed using destructors..in heap,CLR is responsile for memory management.

2

Sigiloso

9 de abr. de 2017

Heap : When you try to allocate memory by using "new " keyword .The memory will be stored in heap memory. Stack : The memory will be allocated automatically and free automatically once variable out of the scope

Sigiloso

12 de nov. de 2010

I had no clue