考虑以下代码
def salt
[]
end
def pepper
salt = salt.map{ |grain| 'ok' }
end
给出以下结果:
NoMethodError (undefined method `map' for nil:NilClass):
为什么这些情况确实会导致错误?这是出乎意料的。
答案 0 :(得分:5)
因为您的本地变量salt
是shadowing方法salt
。由于刚刚定义了变量salt
,因此其值为nil
。您可以通过在实例上显式调用salt
来获取方法来解决此问题:
def pepper
salt = self.salt.map{ |grain| 'ok' }
end