如果VARIABLE在ARRAY ruby中
我认为这应该工作:
def setMethod(method)
if method in @@methods
... do something
end
end
不过,我不断收到错误关键字用于in
试试这个,假设@@methods
是一个数组:
if @@methods.include?(method)
# ...
end
链接地址: http://www.djcxy.com/p/25695.html