如何在Groovy类中调用接口的默认方法

时间:2018-10-22 10:21:48

标签: java groovy

我有一个时髦的类Page,它实现了一个名为IImageOperations的接口。

此接口包含默认方法addImage。我想从Page类中调用。

我试图通过以下方式致电

class Page implements IImageOperations, ITextOperations {

void addImage(PDImageXObject image, float x, float y, float w = 0, float h = 0, float rotate = 0, boolean inline){
    if(w == 0)
        w = image.getWidth();
    if(h == 0)
        h = image.getHeight();
    IImageOperations.super.addImage("", 0, 0);
}
}

但是,它给了我下面的错误

Groovy:仅在嵌套/内部类中允许使用“ Class.this”和“ Class.super”。

如果我们将此Page类定义为Java类,那么一切正常。

1 个答案:

答案 0 :(得分:1)

以下正确的Java代码

import java.lang.reflect.Type;


public class A implements Type{
    public static void main(String [] arg){
        new A().run();
    }

    public void run(){
        System.out.println( Type.super.getTypeName() );
    }

}

无法根据常规进行编译:

org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
A.groovy: 10: The usage of 'Class.this' and 'Class.super' is only allowed in nested/inner classes.
 @ line 10, column 23.
                System.out.println( Type.super.getTypeName() );

但是以下语法可以正常工作(groovy 2.4.11):

import java.lang.reflect.Type;

public class A implements Type{
    public static void main(String [] arg){
        new A().run();
    }

    public void run(){
        //System.out.println( Type.super.getTypeName() );
        System.out.println( ((Type)this).getTypeName() );
    }

}