今天学习了内部类的知识,知道内部类是可以持有外部类的this,从而在内部类中可以使用OuterClass.this.medthod()来引用相应外部类方法。但是我写出下代码,可以运行,然而其中的调用逻辑我不是很明白,望赐教!
public class test {
public void report(){
System.out.println("I'm invoked!");
public void perform(){
new Speaker().handleAction(new Action(){
@Override
public void action() {
report();//???为什么能调用report??
public static void main(String[] args) {
new test().perform();//测试代码
class Speaker{
void handleAction(Action act){
act.action();
interface Action{
void action();
其中设计是这样的,test对象调用perform方法,该方法其中新建一个Speaker匿名类对象,该对象调用了其handleAction方法,该方法的参数是一个Action接口,接口需要重写action抽象方法。我使用了属于test的report方法。输出是正常的。
那么我想知道,test对象的方法中有一个匿名类的局部对象,局部对象参数是一个实现接口的匿名类,为什么在这个匿名类中可以调用report?它持有test.this指针吗?
我理解中,new Speaker().handleAction(new Action(){....
这里面的实现逻辑和test.this一点关系都没有,也没有必要持有test.this???