Flow Points :-
- For every thread JVM will create a runtime stack each and every method call performed by that thread will be stored in the corresponding stack.
- Each entry in the stack is called Stack frame or activation record.
- After completing every method call the corresponding entry from the stack will be removed.
- after completing all method calls the stack will become empty and that empty statck will be destroyed by JVM just before terminating the thread.
No comments:
Post a Comment