gradle / groovy:从自定义类调用“全局”函数

时间:2018-11-29 14:51:31

标签: java class gradle groovy

我不熟悉groovy / gradle 据我了解,gradle / groovy与Java兼容。

我在“ build.gradle”文件中编写了以下gradle(没有任何任务):

def myFun = {->"Hello World"}

class MyClass {
    String getLabel() {
        return ""+ myFun();
        }
    }

System.err.println(new MyClass().getLabel());

其中类MyClass调用'global'(?)函数myFun

调用gradle --tasks会产生以下错误:

FAILURE: Build failed with an exception.

* Where:
Build file 'build.gradle' line: 6

* What went wrong:
A problem occurred evaluating root project 'tmp'.
> No signature of method: MyClass.myFun() is applicable for argument types: () values: []
  Possible solutions: find(), find(groovy.lang.Closure), wait(), any(), every(), dump()

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 2.671 secs

如何使此类MyClass可以“查看”函数myFun

谢谢。

1 个答案:

答案 0 :(得分:2)

您不能直接使用,因为Groovy中没有全局变量。您可以修改声明以传递当前类的实例,以便调用myFun闭包:

@groovy.transform.Field 
def myFun = {-> "Hello World"}

class MyClass {
    String getLabel(script) {
        return ""+ script.myFun();
    }
}

System.err.println(new MyClass().getLabel(this))

或者您可以使用binding对象,但这是相同的模式。

有关更多信息: