How to jump to the function call? before the breakpoint

I only see "Step Over next function call". How can I call up previous function call?

clipboard.png

Mar.06,2021

previous function call? The program is executed sequentially. It has been executed 1 before it is executed 2. Now you have run past it and can't go back until you hit 2p1 at the breakpoint.
if you want to ask the current function, of the function call, such as 1 call 2, if the breakpoint hits 2, you can see that the Call Stack, is 2 of 1 call.


function stack pops up the previous method, which executes destruction, and program execution is irreversible!
if you have to check the status of the previous method, just hit one more breakpoint in the previous method.

Menu