是否可以创建某种"跟踪断点"在eclipse中,Eclipse将在"断点"中记录我选择的变量。没有暂停应用程序被击中?
答案 0 :(得分:2)
不确定。对于此示例方法:
public static void logArgs(final String one, final String two) {
System.out.println(one + two);
}
将断点放入其中,右键单击它并编辑Breakpoint properties...
,如示例中所示。重要的复选框是Conditional
和Suspend when 'true'
。只需返回false
,以便断点根本不会暂停。
java.io.FileWriter w = new java.io.FileWriter("/tmp/file.txt", true);
w.write(String.format("args(%s, %s)%n"), one, two));
w.close();
return false;