我正在试图找出一种更好的方式来编写| |
,因此它更具可读性和有意义。是否有人类的方式来写这个?
答案 0 :(得分:2)
||
- 短路双管。和&&
- 短路双和。
In Ruby, there are two sets of logical operators:[!
,&&
,||
]和[not
,and
,or
]。 [!
,&&
,||
]的优先级高于作业(=
,%=
,~=
,{{1} }等等,而[/=
,not
,and
]的优先级较低。另请注意,虽然or
的优先级高于&&
,但||
的优先级与and
的优先级相同。
答案 1 :(得分:0)
您可以使用关键字or
或and
分别表示||
或&&
。