我希望有一個方法接受一個字符串,然後用該字符串的名稱更新一個變量。這是我嘗試的例子:就在上面的方法「送」之前如何修改名稱給定的變量的值
syntax error, unexpected tIVAR
與指針:
@other_class = OtherClass.new()
def change_variable(variable_string)
[email protected]_class.send.variable_string += 1
end
我得到的錯誤。有沒有人有任何建議,使這項工作?
'varaible_string'代表一個實例變量嗎? – sawa 2013-03-07 18:23:50
使用'self'或'@'不''self。@ ....' – 2013-03-07 18:24:00
不知道你想要什麼,但刪除'self' – enthrops 2013-03-07 18:24:20