this.addTreeSelectionListener(new TreeSelectionListener() {
public void valueChanged(TreeSelectionEvent e) {
// How do I access the parent tree from here?
}
});
答案 0 :(得分:37)
您可以使用OuterClass.this
:
public class Test {
String name; // Would normally be private of course!
public static void main(String[] args) throws Exception {
Test t = new Test();
t.name = "Jon";
t.foo();
}
public void foo() {
Runnable r = new Runnable() {
public void run() {
Test t = Test.this;
System.out.println(t.name);
}
};
r.run();
}
}
但是,如果您只需要访问封闭实例中的成员,而不是获取对实例本身的引用,则可以直接访问它:
Runnable r = new Runnable() {
public void run() {
System.out.println(name); // Access Test.this.name
}
};
答案 1 :(得分:3)
TreeSelectionListener
是一个接口,因此唯一的父类是Object
,您可以使用super
调用它。
如果你的意思是调用封闭类的某个方法,你可以直接在方法中调用它。