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.
通常,这是可行的,但除了我自己的代码之外,还有很多机器代码,这并不能真正帮助我调试自己的程序逻辑。
有没有办法只通过我自己的代码?
首先在要开始跳过的地方放一个断点。断点之后,使用此按钮可以跳过代码。播放按钮会一直运行到下一个断点
您可能希望next在调试器 UI 中使用命令或“跳过”按钮,而不是step“步入”,以避免在调试时单步执行每个函数。当然,您可能仍想单步执行自己的函数,但next会让您跨过框架函数,而不是深入研究它们的程序集。
next
step