vote up 13 vote down star
1

I'm currently creating an explicit reference to this in the outer class so that I have a name to refer to in the anonymous inner class. Is there a better way to do this?

flag

5 Answers

vote up 22 vote down check

I just found this recently. Use OuterClassName.this.

class Outer {
    void foo() {
        new Thread() {
            public void run() {
                Outer.this.bar();
            }
        }.start();
    }
    void bar() {
        System.out.println("BAR!");
    }
}

Updated If you just want the object itself (instead of invoking members), then Outer.this is the way to go.

link|flag
vote up 0 vote down

You can still use Outer.class to get the class of the outer class object (which will return the same Class object as Outer.this.getClass() but is more efficient)

If you want to access statics in the enclosing class, you can use Outer.name where name is the static field or method.

link|flag
vote up 0 vote down

Thanks for the answers. To clarify a bit, I need a reference to the enclosing class itself, not to its members.

link|flag
vote up 1 vote down

I believe that generally you can just use "this", or just leave it off completely. The code in the inner class should be able to reference the outer class's members without any problem. The only time you should need to use the more verbose version "Outer.this" is if there is name conflicts. So, to expand on Frank's comment:

class Outer {
  void foo() {
    new Thread() {
      public void run() {
        this.bar();
        Outer.this.baz();
      }

      public void baz() { }
    }.start();
  }
  void bar() {
    System.out.println("BAR!");
  }
  void baz() {
    System.out.println("BAZ!");
  }
}
link|flag
vote up 5 vote down

Use EnclosingClass.this

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.