14

我正在使用 Apache Commons EqualsBuilder 为非静态 Java 内部类构建 equals 方法。例如:

import org.apache.commons.lang.builder.EqualsBuilder;

public class Foo {
    public class Bar {
        private Bar() {}

        public Foo getMyFoo() {
            return Foo.this
        }

        private int myInt = 0;

        public boolean equals(Object o) {
            if (o == null || o.getClass() != getClass) return false;

            Bar other = (Bar) o;
            return new EqualsBuilder()
                .append(getMyFoo(), other.getMyFoo())
                .append(myInt, other.myInt)
                .isEquals();
        }
    }

    public Bar createBar(...) {
        //sensible implementation
    }

    public Bar createOtherBar(...) {
        //another implementation
    }

    public boolean equals(Object o) {
        //sensible equals implementation
    }
}

除了声明方法之外,是否有可以引用other的语法?类似的东西(不起作用)?FoogetMyFoo()other.Foo.this

4

3 回答 3

6

不。

最好的方法可能是您建议的:将 getFoo() 方法添加到您的内部类。

于 2008-11-21T19:14:48.727 回答
2

不,没有吸气剂是不可能的。'this' 关键字将始终指向当前实例。我很好奇您为什么要这样做……似乎您以错误的方式进行构图。

public class Foo {

  public Bar createBar(){
    Bar bar = new Bar(this)
    return bar;
  }
}

public class Bar {
  Foo foo;
  public Bar(Foo foo){
    this.foo = foo;
  }

  public boolean equals(Object other) {
    return foo.equals(other.foo);
  }
}

由于使用 Foo.this 将内部类 (Foo myFoo = new Foo(); myFoo.new Bar(); 的创建限制为一个实例,我会说这更干净。

于 2008-11-21T19:27:48.123 回答
-1

是的:

public class Foo {
    public class Bar {
        public Foo getMyFoo() {
            return Foo.this;
        }
    }
    public Foo foo(Bar bar) {
        return bar.getMyFoo();
     }
    public static void main(String[] arguments) {
        Foo foo1=new Foo();
        Bar bar1=foo1.new Bar();
        Foo foo=(new Foo()).foo(bar1);
        System.out.println(foo==foo1);
    }
}
于 2008-11-21T19:29:12.253 回答