我的理解是
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(从赋值到项目)?
如果你的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"
原文链接:https://www.f2er.com/ruby/265824.html