我有以下代码:
def test( name ) {
s = ['$','{','n','a','m','e','}'].join()
println s instanceof String // is true, s is not a gstring
// create a GString
g = GString.EMPTY.plus( s )
println g instanceof GString
println g.toString() // Shouldn't evaluate here?
}
test("Oscar")
我希望输出为:
true
true
Oscar
但我有:
true
true
${name}
我知道我可以使用以下方式实现:
def test( name ) {
g = "${name}"
println g instanceof GString // is true
println g.toString()
}
test("Oscar")
我想我知道原因,但我想知道。
答案 0 :(得分:1)
由于您将g和s都声明为字符串,因此toString()方法将只返回它们的值。没有Groovy代码的实际评估(如果你考虑的话,这可能在很多场景中都很危险)。
我认为无论你想要实现什么,都可以通过闭包更好地实现?
答案 1 :(得分:1)
原因是Groovy无法确保它仍然可以访问已创建java.lang.String的上下文,例如
def myFunction() {
def a = 1
return '${a}'
}
GString.EMPTY.plus (myFunction()) // no access to local variable a anymore!
因此,在GString.plus调用的给定java.lang.String上没有评估。