Popping a Call From the Call Stack

See Also

You can change the execution of your program so that the next statement to be executed is one of the calls made earlier on the stack. In general, popping, or removing, a call from the call stack does not undo any effects that the call caused. For example, if a call opened a database connection and then that call is removed, the database connection will remain open.

To pop the most recent call from the call stack:

To pop multiple calls from the call stack:

See Also
Using the Call Stack

Legal Notices