我创建了一个迭代Order对象数组的类方法。我正在使用那里的数据来构建哈希。迭代中的一个if块是:
if !(report_hash[user_id][reason])
report_hash[user_id][reason] = 1
else
report_hash[user_id][reason]++
end
当我运行此方法时,我得到:
.rb:66 syntax error, unexpected keyword_end (SyntaxError)
第66行是end
所居住的地方。为什么Ruby不期望在这个块的末尾有一个结束语句?一旦一切正常,我打算将所有条件逻辑移动到单独的类方法中,但我一直试图解决这个问题并且有点卡住了。
答案 0 :(得分:6)
增量方法++
在Ruby 中不合法,请改用+= 1
:
if !(report_hash[user_id][reason])
report_hash[user_id][reason] = 1
else
report_hash[user_id][reason] += 1
end
稍微改进(代码大小):我会将此代码重构为以下内容:
report_hash[user_id][reason] ||= 1 # this will set report_hash[user_id][reason] to 1 if it is nil
report_hash[user_id][reason] += 1
答案 1 :(得分:1)
Ruby没有++
运算符。相反,你应该:
report_hash[user_id][reason] += 1