Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
哪些运算符将始终评估所有操作数?
选出两个正确答案。
a. || b. + c. && d. ? : e. %
运算符 + 适用于所有但无法找到第二个。这里有选择吗?
+并且%,当然。
+
%
&&
false
||
true
? :
?
另一方面,两者+和都必须具有两个操作数才能计算它们的结果——即总和或除法余数。%
运算符:“+”和“%”。还有一个'|' 称为布尔或,在此运算符中,在测试之前对左和右都进行了评估。