ruby case statement with comparison [duplicate]

自作多情 提交于 2019-12-04 07:27:49

In case..when block you can't perform any comparisons except ===. So I'd write your code as below :

def get_price_rank(price)
    case price
    when 41..50 
        'Sorta cheap'
    when 50..60
        'Reasonable'
    when 60..70
        'Not cheap'
    when 70..80
        'Spendy'
    when 80..90
        'Expensive!'
    else
        if price >= 90
         'Rich!'
        elsif price <= 40
         'Cheap!'
        end
    end
end

return is implicit, thus no need to mention.

Rewrite your case like this:

case price
when 0..40 then
    return 'Cheap!'
when 41..50 then 
    return 'Sorta cheap'
when 50..60 then
    return 'Reasonable'
when 60..70 then
    return 'Not cheap'
when 70..80 then
    return 'Spendy'
when 80..90 then
    return 'Expensive!'
else 
    return 'Rich!'
end
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!