Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个非常大的代码,我需要对其进行全面调试,所以我需要在代码的每一行设置断点。何做这个?
无需设置断点,F7是“Debugger step into”的快捷方式,它将完全按照您的要求执行,单步执行在每一行停止的程序。
F7
如果您想跳过某些方法调用,F8(“Debugger step over”)也可能会有所帮助。
F8