Data Structure
-
Stack , HeapC# 2019. 6. 1. 17:36
What is "Stack" -A Memory space to run a program, memory which is needed when calling method is saved here. Stack Frame -A memory for calling method is mandatory in stack. A bundle of memory that are needed for a method is called "Stack Frame". -In other words, each method demands each Stack Frame which is consisted of local value, parameter, return value. Method Call and Stack Memory -When you ..