|
Compares two expressions bit by bit and returns 1 for a position bit if one compared postitions is 1. Returns 0 for that position bit if both compared positions are 0 or 1. The following list shows all possible combinations:
두개의 표현식을
조사하여 둘 중 하나만 1
일 때 1 을 반환합니다. 둘
다 0 이거나 둘 다 1 이면 0
을 반환합니다.
1 ^ 0 // Evaluates 1 because the first is 1 0 ^ 1 // Evaluates 1 because the second is 1 1 ^ 1 // Evaluates 0 because both are 1 0 ^ 0 // Evaluates 0 because both are 0
|