&&

名称

&&

説明

論理積は、オペランドが双方ともtrueのときtrueを返す。

使用例

この演算子は、if文の条件の中でも利用できる。

1
2
3
if (digitalRead(2) == HIGH && digitalRead(3) == HIGH) { // if BOTH the switches read HIGH
  // statements
}

注意

論理AND(&&)とビット単位のAND演算子(&)とを間違えないこと。両者は全く異なるものである。

参照

言語 &(ビット単位のAND演算子)

オリジナルのページ

https://www.arduino.cc/reference/en/language/structure/boolean-operators/logicaland/

Last Revision: 2019/02/19

最終更新日

January 4, 2024

inserted by FC2 system