简体   繁体   中英

Stop,Step In,Step Over and Step Out in the KOMODO debugger

I would like to understand what does it mean in the KOMODO debugger to Stop,Step In,Step Over and Step Out as in the snippet below:

在此处输入图像描述

See the chapter Debugging your programs in the documentation.

  • Stop : Means stop the debugging session.
  • Step In : Means step into a sub routine (if the current statement is not a sub routine call, just step to the next line)
  • Step Over : Do not step into a sub routine (if the current statement is a sub routine call). This means that if the current statement is a subroutine call, it will execute the call and then stop at the next line.
  • Step Out : Means: finish execute the current sub routine and stop at the next statement in the caller

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM