ruby – 和|和|之间的差异设置变量时

前端之家收集整理的这篇文章主要介绍了ruby – 和|和|之间的差异设置变量时前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的印象是||或者是同义词.

设置变量有或没有值;为什么?

>> test = nil or true
=> true
>> test
=> nil

>> test = false or true
=> true
>> test
=> false

使用||“按预期”工作

>> test = nil || true
=> true
>> test
=> true

解决方法

或者优先级低于=.
test = nil or true

是相同的

(test = nil) or true

这是真的,同时将测试设置为零.

||优先级高于=.

test = nil || true

是相同的

test = (nil || true)

这是真的,同时将测试设置为true.

原文链接:https://www.f2er.com/ruby/267657.html

猜你在找的Ruby相关文章