[Boolean Operators]
描述
Logical OR results in a true
if either of the two operands is true
.
範例程式碼
This operator can be used inside the condition of an if statement.
if (x > 0 || y > 0) { // if either x or y is greater than zero // statements }
Tip
Do not confuse the boolean || (double pipe) operator with the bitwise OR operator | (single pipe).
參考
- [Language] | Bitwise OR
語法參考主頁面
86Duino 參考的文本是根據 Creative Commons Attribution-ShareAlike 3.0 License,部分文本是從 the Arduino reference 修改的。 參考中的代碼示例已發佈到公共領域。