有没有办法将所有定义的变量传递给 GroovyShell?
现在,当我尝试在 Groovy 中评估一段代码时,我必须做这样的事情:
new GroovyShell(new Binding([var1:var1])).evaluate(line)
当您定义了很多变量时,这可能会非常令人讨厌。有更好的方法吗?是否有类似Python的locals
之类的东西,或者类似的东西可以列出所有声明的变量?
Right now, when I'm trying to eval a piece of code in Groovy, I have to do something like this :
new GroovyShell(new Binding([var1:var1])).evaluate(line)
This can be pretty nasty when you have a lot of variables defined. Is there a better way of doing this? Is there something like Python's locals
, or something similar that lists all the declared variables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还没有测试过这个...但它可能有效:
或者这样:
I haven't tested this... but it may work:
or this: