动态 GString 创建无法按我的预期工作

发布于 2024-11-02 00:04:04 字数 659 浏览 0 评论 0原文

我有以下代码:

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")

认为 我知道原因,但我想确定。

I have the following code:

def test( name  ) {
    s = ['

I expect the output to be:

true
true
Oscar

But instead I have:

true
true
${name}

I know I can achieve that using:

def test( name ) { 
    g = "${name}"
    println g instanceof GString // is true
    println g.toString()   
}
test("Oscar")

I think I know the reason but I would like to know for sure.

,'{','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")

I expect the output to be:

But instead I have:

I know I can achieve that using:

I think I know the reason but I would like to know for sure.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〆凄凉。 2024-11-09 00:04:04

由于您将 g 和 s 都声明为字符串,因此 toString() 方法将仅返回它们的值。没有对 Groovy 代码进行实际评估(如果您考虑一下,这在很多情况下可能是危险的)。

我认为无论你想要实现什么目标,通过闭包都可以更好地完成?

Since you declare both g and s to be strings, the toString() method will simply return their values. There is no actual evaluation of Groovy code (this could be dangerous in quite a few scenarios, if you think about it).

I think whatever you're trying to achieve might be better accomplished via closures?

月野兔 2024-11-09 00:04:04

原因是 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 进行求值。

the reason is that Groovy can't ensure it still has access to the context where the java.lang.String has been created e.g.

def myFunction()  {
  def a = 1
  return '${a}'
}

GString.EMPTY.plus (myFunction()) // no access to local variable a anymore!

thus, no evaluation happens on a given java.lang.String on a GString.plus call.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文