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.
我想在我的 Java 项目中输入特定方法之后/之前将一些内容记录到一些 Eclipse 视图中。
这可能吗?
附加信息 1:我正在使用 Eclipse 4.2
在方法中创建一个普通断点,添加一个条件,如
System.out.println("hit the method"); return false;
该断点将始终被评估,但它不会停止调试器。您也可以对方法断点(而不是行断点)使用相同的技术,并且您可以在此处另外指定是否应在进入或离开方法时对其进行评估。