我的理解是ruby返回函数中计算的最后一个语句。如果函数以if
语句结束,该语句的计算结果为false
def thing(input)
item = input == "hi"
if item
[]
end
end
puts thing("hi").class #> Array
puts thing("not hi").class #> NilClass
我喜欢这个功能(如果语句为false,则返回nil
),但为什么false
没有返回(从赋值到item
)?
答案 0 :(得分:8)
如果你的if
语句没有导致任何代码被运行,它将返回nil,否则,它返回运行的代码的值。 Irb是试验这些东西的好工具。
irb(main):001:0> i = if false then end
=> nil
irb(main):002:0> i = if true then end
=> nil
irb(main):007:0> i = if false then "a" end
=> nil
irb(main):008:0> i = if false then "a" else "b" end
=> "b"
答案 1 :(得分:4)
返回值是if表达式的值,它是已计算的子句的值,而不是条件的值。如果没有评估子句(如果没有其他),则返回nil:
irb(main):001:0> x = if false
irb(main):002:1> []
irb(main):003:1> end
=> nil
irb(main):004:0> x
=> nil
irb(main):005:0>