gpt4 book ai didi

groovy - 访问静态范围内的全局变量

转载 作者:行者123 更新时间:2023-12-03 04:20:50 31 4
gpt4 key购买 nike

有没有办法从同一脚本中声明的类的静态方法访问脚本中声明的全局变量?

例如

def s = "12345"

class MyClass {
static def method() {
println s
}
}

因为这样它就会失败并出现错误

You attempted to reference a variable in the binding or an instance variable from a static context

这是预期的。

最佳答案

这个问题有一个相关的讨论:

Groovy scope - how to access script variable in a method

相关的是,两个问题都涉及在类中使用全局变量,但这个问题有所不同,因为您正在寻求使用静态方法来改变传递脚本实例或绑定(bind)的方式(两种选择)。

传递脚本实例

import groovy.transform.Field

@Field def s = "12345"

class MyClass {
static def method(si) {
return si.s
}
}

assert MyClass.method(this) == "12345"

传递脚本的绑定(bind)

s = "12345" // NOTE: no 'def'

class MyClass {
static def method(b) {
return b.s
}
}

assert MyClass.method(binding) == "12345"

关于groovy - 访问静态范围内的全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35417969/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com