比方 i=1 data1=123 p data#{i}的结果是 data1,我想要 123 怎么做?
eval set_instance_var
p eval "data#{i}"
实例变量的话使用 instance_variable_get('') 类变量的话使用 class_variable_get('') 另外,是局部变量的话,好像 api 中只有 local_variables 可用
这种情况用数组或是 hash 吧。