我只是好奇。有没有办法访问另一个匿名类中的匿名类中的父级?
我让这个例子创建了一个JTable
子类(匿名类)覆盖changeSelection
,并在里面创建了另一个匿名类。
MCVE:
public class Test{
public static void main(String args []){
JTable table = new JTable(){
@Override
public void changeSelection(
final int row, final int column,
final boolean toggle, final boolean extend) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
super.changeSelection(row, column, toggle, extend);
//more code here
}
});
}
};
}//end main
}//end test
我该如何参考super.changeSelection(..)
?