Using the value of a variable as another variables name in Ruby

徘徊边缘 提交于 2019-12-18 11:45:31

问题


I'm just starting out in learning Ruby and I've written a program that generates some numbers and assigns them to variables @one, @two, @three etc. The user can then specify a variable to change by inputting it's name (e.g one). I then need to do something like '@[valueofinout] = asd'. How would I do this, and is there a better way as the way I'm thinking of seems to be discouraged? I've found

x = "myvar"
myvar = "hi"
eval(x) -> "hi"

but I don't completely understand why the second line is needed. In my case would I use something like

@one = "21"
input = "one"
input = "@" + input
changeto = "22"
eval(input) -> changeto

回答1:


Use instance_variable_set (rubydoc)

instance_variable_set("@" + varname, value)

In most cases though, you should separate your normal Ruby variables from the variables your user is interacting with. How about creating a Hash of user variables, e.g.

@uservars = { 'one' => 1, 'two' => 2 }
two = @uservars['two']   # Look up 'two' variable

varname = "myvar"
@uservars[varname] = 5   # Set a variable by name
value = @uservars[varname]  # Get a variable by name 



回答2:


Instance variables can be retrieved via this method:

input = instance_variable_get("@one")

After this, in your case you'll have input equal to "21".



来源:https://stackoverflow.com/questions/2530112/using-the-value-of-a-variable-as-another-variables-name-in-ruby

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!