ruby – 从表示局部变量的字符串中获取值

前端之家收集整理的这篇文章主要介绍了ruby – 从表示局部变量的字符串中获取值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Is there a ‘variable_get’ method? If not,how can I create my own?2个
我有一个本地变量名称作为字符串,需要获取其值.
variable = 22
"variable".to_variable?

如何从字符串中获取值22?

解决方法

你可以使用eval.
variable = 22
eval("variable")
# => 22

但是eval can be nasty.如果你不介意声明一个实例变量,你也可以这样做:

@variable = 22
str = "variable"
instance_variable_get("@#{str}")
# => 22
原文链接:https://www.f2er.com/ruby/269482.html

猜你在找的Ruby相关文章