&&
설명
논리 AND 는 피연산자들이 true 일 때 만 true 가 된다.
예제 코드
이 연산자는 if 문의 조건 안에 쓰일 수 있다.
if (digitalRead(2) == HIGH && digitalRead(3) == HIGH) { // 두 스위치 다 HIGH
// 문
}
※ 주의 및 경고:
논리 AND 연산자 && (이중 앰퍼샌드) 와 비트 AND 연산자 & (단일 앰퍼샌드)를 실수하지 마시오. 그들은 완전히 다른 녀석이다.
더보기
- 언어 : ! (논리 NOT)
- 언어 : || (논리 OR)
- 언어 : & (비트 AND)
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.