如何在代码的每一行(delphi)上设置断点?

时间:2021-04-06 22:58:27

I have a very big code, and I need to debug it fully, so I need to set breakpoint on every line of the code. Ho to do this?

我有一个非常大的代码,我需要完全调试它,所以我需要在代码的每一行设置断点。何要这样做?

1 个解决方案

#1


5  

No need to set breakpoints, F7 is the shortcut for "Debugger step into" which will do exactly what you're trying to do, step through the program stopping at every line.

无需设置断点,F7是“调试器步入”的快捷方式,它将完成您正在尝试的操作,逐步执行程序停止在每一行。

If you want to skip certain method calls, F8 ("Debugger step over") can also be helpful.

如果要跳过某些方法调用,F8(“调试器跳过”)也会有所帮助。

#1


5  

No need to set breakpoints, F7 is the shortcut for "Debugger step into" which will do exactly what you're trying to do, step through the program stopping at every line.

无需设置断点,F7是“调试器步入”的快捷方式,它将完成您正在尝试的操作,逐步执行程序停止在每一行。

If you want to skip certain method calls, F8 ("Debugger step over") can also be helpful.

如果要跳过某些方法调用,F8(“调试器跳过”)也会有所帮助。