Pregunta de entrevista de Siemens Digital Industries Software

Difference between Heap and Stack

Respuestas de entrevistas

Anónimo

23 de feb 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

Anónimo

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

Anónimo

12 de nov de 2010

I had no clue