编程语言
首页 > 编程语言> > java – 在父类中调用匿名内部类的方法

java – 在父类中调用匿名内部类的方法

作者:互联网

关于Anonymous内心阶级的冲浪,我对此产生了疑问

这是我下载的Original代码并正在解决它(请参阅下面的代码仅用于我的问题).

根据上面的链接,他们说我们不能超载&在Anonymous Inner类中添加其他方法.

但是当我编译下面的它工作正常,虽然我无法在Inner类之外调用那些公共方法.

最初我很惊讶为什么我无法访问Inner类之外的公共方法,但后来我意识到Object被“父”类引用所持有,它不知道这样的函数调用.

我可以在下面的代码中进行哪些更改,以调用Inner类之外的重载方法和新方法?

class TestAnonymous
{    

    public static void main(String[] args)
    {      
        final int d = 10;

        father f = new father(d);

        father fAnon = new father(d){                
        // override method in superclass father
        void method(int x){     
            System.out.println("Anonymous: " + x);
            method("Anonymous: " + x); //This Compiles and executes fine.
            newMethod(); //This Compiles and executes fine.
        }

        // overload method in superclass father
        public void method(String str) {
            System.out.println("Anonymous: " + str);
        }

        // adding a new method
        public void newMethod() {
            System.out.println("New method in Anonymous");
            someOtherMethod(); //This Compiles and executes too.
        }

        };

        //fAnon.method("New number");  // compile error
        //fAnon.newMethod();         // compile error - Cannot find Symbol

    }

    public static final void someOtherMethod()
    {
        System.out.println("This is in Some other Method.");
    }

} // end of ParentClass

class father
{   
    static int y;

    father(int x){ 
        y = x;
        this.method(y);
    }

    void method(int x){
        System.out.println("integer in inner class is: " +x);
    }     
}  

解决方法:

你不能用匿名类做到这一点;它与Java的静态类型系统冲突.从概念上讲,变量fAnon的类型为father,它没有.method(String)或.newMethod方法.

你想要的是父亲的普通(命名)子类:

class fatherSubclass extends father
{ /* ... */ }

你应该声明你的新变量

fatherSubclass fAnon = new fatherSubclass(d)

标签:java,overloading,anonymous-class
来源: https://codeday.me/bug/20190613/1233051.html