Groovy:在里面$变量嵌套评价{}(Groovy: Nested evaluation of v

2019-09-18 00:43发布

我有没有办法做“$ -Strings”的嵌套评价Groovy中,例如像

def obj = {["name":"Whatever", "street":"ABC-Street", "zip":"22222"]}
def fieldNames = ["name", "street", "zip"]

fieldNames.each{ fieldname ->
  def result = " ${{->"obj.${fieldname}"}}"  //can't figure out how this should look like
  println("Gimme the value "+result);
}

结果应该是:

Gimme the value Whatever
Gimme the value ABC-Street
Gimme the value 22222

。我试图要么解决这个不给正确的结果(例如刚刚obj.street}或将不能编译,我只是不明白的整个概念到目前为止,似乎但是,看到这个: HTTP:// groovy.codehaus.org/Strings+and+GString我相信它应该是可能的。

Answer 1:

有关页面是什么让你觉得这是可能的吗? 目前没有任何嵌套的例子。

据我所知这是不可能的默认; 中的表达式${}没有重新评估。 这将是危险的,因为无论如何它会非常容易使其无限深吹堆栈。

在这种情况下,这是不必要的了。

  • obj是一个实际的地图,而不是一个封闭,并
  • 使用法线贴图[]的字段名访问
def obj = [ "name": "Whatever", "street": "ABC-Street", "zip": "22222" ]
def fieldNames = ["name", "street", "zip"]

fieldNames.each { println "Gimme the value ${obj[it]}" }

Gimme the value  -> Whatever
Gimme the value  -> ABC-Street
Gimme the value  -> 22222

编辑这是可能的,我误解,你就故意obj封闭的,而不是一个地图,虽然我不明白为什么。



文章来源: Groovy: Nested evaluation of variables inside ${}