gpt4 book ai didi

ruby - 如何包含 ||= 和 unless ?不同?

转载 作者:太空宇宙 更新时间:2023-11-03 17:20:56 26 4
gpt4 key购买 nike

下面两行有什么区别?

# settings and globals are Hash
@settings[:xvfb] = globals[:xvfb] unless settings.include?(:xvfb)
@settings[:xvfb] ||= globals[:xvfb]

它们等价吗?

最佳答案

不,它们不等价。它们在处理错误值方面有所不同。

globals = { foo: 'bar' }

h = { foo: nil }
h.include?(:foo) # => true
h[:foo] = globals[:foo] unless h.include?(:foo)
h # => {:foo=>nil}

h = { foo: nil }
h[:foo] ||= globals[:foo]
h # => {:foo=>"bar"}

关于ruby - 如何包含 ||= 和 unless ?不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42432528/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com