논리 연산자

Jmnote bot (토론 | 기여)님의 2017년 7월 10일 (월) 12:00 판 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))

1 개요

Logical Operators
논리 연산자
연산자 이름 설명
a and And a와 b가 모두 true이면 true
a && b And a와 b가 모두 true이면 true (C언어 스타일)
a or b Or a나 b가 true이면 true
a || b Or a나 b가 true이면 true (C언어 스타일)
a xor b Xor a와 b중 하나만 true일 때만 true
! a Not a가 true가 아니면 true

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}