this.addTreeSelectionListener(new TreeSelectionListener() {
public void valueChanged(TreeSelectionEvent e) {
// How do I access the parent tree from here?
}
});
问问题
8616 次
2 回答
36
您可以使用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
}
};
于 2009-11-05T09:25:42.217 回答
3
TreeSelectionListener
是一个接口,所以唯一的父类是Object
,你应该可以用它来调用它super
。
如果您的意思是调用封闭类的某个方法,则可以像在方法中一样直接调用它。
于 2009-11-05T09:22:43.830 回答