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.
.NET 有几个方便的注释,它们指示调试器单步执行/跳过某些方法。我想知道是否有适用于 Java 平台的等价物。
例如:
@DebuggerStepThrough public void foo() { .. }
会导致调试器在单步执行时不会停止。foo
foo
PS。我正在实现一个调试器并控制发出的字节码
AFAIK,不是作为股票功能,不是。
否则我也可以推荐看看 eclipse 调试器的“Step filter”和“conditional breakpoint”特性。它允许您忽略某些类型(步骤过滤器)或仅在某些运行时条件下停止(条件断点)。