作为表达式¶
if
的值是每个分支中找到的最后一个表达式的值
a = if 2 > 1
3
else
4
end
a # => 3
如果 if
分支为空,或者缺少,则认为它包含 nil
if 1 > 2
3
end
# The above is the same as:
if 1 > 2
3
else
nil
end
# Another example:
if 1 > 2
else
3
end
# The above is the same as:
if 1 > 2
nil
else
3
end