红宝石? - 映射时无法设置与方法名称相同的变量名称

时间:2012-03-18 04:09:20

标签: ruby

考虑以下代码

def salt
  []
end

def pepper
  salt = salt.map{ |grain| 'ok' }
end

给出以下结果:

NoMethodError (undefined method `map' for nil:NilClass):

为什么这些情况确实会导致错误?这是出乎意料的。

1 个答案:

答案 0 :(得分:5)

因为您的本地变量saltshadowing方法salt。由于刚刚定义了变量salt,因此其值为nil。您可以通过在实例上显式调用salt来获取方法来解决此问题:

def pepper
  salt = self.salt.map{ |grain| 'ok' }
end