Groovy:如何从groovy脚本中的方法设置属性/字段/ def?

前端之家收集整理的这篇文章主要介绍了Groovy:如何从groovy脚本中的方法设置属性/字段/ def?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

给定一个简单的groovy脚本(不是类!),如何设置方法外的属性/字段的值?

以下代码无法按预期工作:

def hi;

def setMyVariable() {
    hi = "hello world!"
}

setMyVariable()
assert hi == "hello world!"    //fails
println hi                     //prints null

尝试失败

我尝试过很多东西,包括以下内容,都失败了

def setMyVariable() {
    this.hi = "hello world!"
}

public void setMyVariable() {
    hi = "hello world!"
}

public String hi;
public void setMyVariable() {
    this.hi = "hello world!";
}

摘要

设置方法声明外部变量的最简单方法是什么?我唯一可以上班的是以下内容.必须有一个更简单的方法

def hi;

def setMyVariable() {
    this.binding.setVariable("hi","hello world!")
}

setMyVariable()

println this.binding.getVariable("hi")
assert this.binding.getVariable("hi") == "hello world!"  //passes
assert hi == "hello world!"  //fails

解决方法

您可以为变量分配匿名函数,而不是定义方法

def hi

def setMyVariable = {
    hi = "hello world!"
}

setMyVariable()
assert hi == 'hello world!'

猜你在找的Groovy相关文章