Call Stack

What is Call Stack?

When method is called, it is allocated in Call Stack memory and the when method end, memory is deallocated.

lower method(sooner) calls upper mehod(latter).

in thread, one thread has one call stack. In other words, multi-thread have multi-call stack.

"flash" lecture reference, zerocho

Last updated