4

假设我有以下类,并希望在标记位置的 arg==null 上设置条件断点。这在 Eclipse 中不起作用,并给出错误“条件断点存在编译错误。原因:arg 无法解析为变量”。

我在这里找到了一些相关信息,但是即使我将条件更改为“val$arg==null”(val$arg 是调试器变量视图中显示的变量名),eclipse 也会给我同样的错误。

public abstract class Test {

    public static void main(String[] args) {
        Test t1 = foo("123");
        Test t2 = foo(null);
        t1.bar();
        t2.bar();
    }

    abstract void bar();

    static Test foo(final String arg) {
        return new Test() {
            @Override 
                void bar() {
                // I want to set a breakpoint here with the condition "arg==null"
                System.out.println(arg); 
            }
        };
    }
}
4

2 回答 2

4

我只能提供一个丑陋的解决方法:

if (arg == null) {
     int foo = 0; // add breakpoint here
}
System.out.println(arg);
于 2011-01-19T09:37:18.280 回答
2

您可以尝试将参数作为字段放在本地类中。

static Test foo(final String arg) {
    return new Test() {
        private final String localArg = arg;
        @Override 
            void bar() {
            // I want to set a breakpoint here with the condition "arg==null"
            System.out.println(localArg); 
        }
    };
}
于 2011-01-19T10:42:09.560 回答