gpt4 book ai didi

java - 如何确定在脚本引擎中运行的 Groovy 代码中是否存在变量?

转载 作者:太空狗 更新时间:2023-10-29 22:51:56 26 4
gpt4 key购买 nike

如何确定在脚本引擎中运行的 Groovy 代码中是否存在变量?

变量由 ScriptEngine's put method 放置

最佳答案

groovy.lang.Script 中有一个方法 public Binding getBinding()。和 groovy.lang.Binding有方法 public boolean hasVariable(String name)

因此您可以简单地检查变量是否存在,例如:

if (binding.hasVariable('superVariable')) {
// your code here
}

关于java - 如何确定在脚本引擎中运行的 Groovy 代码中是否存在变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42465028/

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