[:_] eval "t" -6ren">
gpt4 book ai didi

ruby - 如何在 Ruby 中动态创建局部变量?

转载 作者:数据小太阳 更新时间:2023-10-29 06:47:33 26 4
gpt4 key购买 nike

我正在尝试使用 eval 在 Ruby 中动态创建局部变量并改变局部变量数组。我在 IRB 中这样做。

eval "t = 2"
local_variables # => [:_]
eval "t"
# => NameError: undefined local variable or method `t' for main:Object
local_variables << "t".to_sym # => [:_, :t]
t
# => NameError: undefined local variable or method `t' for main:Object

最佳答案

您必须使用相同的绑定(bind)对象同步评估。否则,单个评估有其自己的范围。

b = binding
eval("t = 2", b)
eval("local_variables", b) #=> [:t, :b, :_]
eval("t", b) # => 2
b.eval('t') # => 2

关于ruby - 如何在 Ruby 中动态创建局部变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17842765/

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