简体   繁体   中英

How to skip loops while debugging Java code?

This is not a duplicate of How to come out of while loop during debugging . See the comment on this answer https://stackoverflow.com/a/8107702/1391924 by the author of this question.

While debugging, we can use short-cut keys like F8 to resume, F7 to step return, F5 to step into, F6 to step over.

Is there any short-cut key to skip loops (for,while and do-while) while debugging Java code?

In the picture shown below

在此输入图像描述 Currently debug cursor is at line no 57. Is there any short cut key when pressed it debug cursor should come out of innermost loop (for,while or do-while. Here while loop) and pause at next executable statement (ie excluding comments. Here line no 64). And when again pressed this key it should come to line number 66.

Edit:

Not got any satisfied answer. Raised a bug here . Please vote up and request this feature in next JDT release.

Select the line that's out of the loop and press ctrl + r (Run to line):

在此输入图像描述

You can add a breakpoint after the loop and click F8 (resume). The debugger will stop on the next found breakpoint, eg you will have skipped the loop(s).

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