Question d’entretien chez Yahoo

Difference between memory allocation of stack and heap

Réponse à la question d'entretien

Utilisateur anonyme

13 déc. 2011

Stack is a memory place where the methods and the local variables are stored. Heap is a memory place where the objects and its instance variable are stored.

2