Difference - unless / if

后端 未结 5 1094
无人共我
无人共我 2020-12-04 20:02

Can anyone explain me the difference between if and unless and when to use it?

5条回答
  •  有刺的猬
    2020-12-04 20:26

    unless is just a negated if. That is, it executes whatever it contains if the condition is not true.

    unless foo?
        # blabla
    end
    

    Simply means

    if !foo?
        # blabla
    end
    

    It's all a matter of what you find easier to read, really.

    See also: Unless, The Abused Ruby Conditional

提交回复
热议问题