A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Atomics/xor below:

Atomics.xor() - JavaScript | MDN

Atomics.xor()

Baseline Widely available

Atomics.xor() 정적 메서드는 배열에서 주어진 위치에 주어진 값으로 XOR 비트 연산을 수행하고 해당 포지션의 기존 값을 반환합니다. 이 아토믹 연산은 수정된 값이 쓰이기 전까지 다른 쓰기 연산이 일어나지 않음을 보장합니다.

시도해 보기
// Create a SharedArrayBuffer with a size in bytes
const buffer = new SharedArrayBuffer(16);
const uint8 = new Uint8Array(buffer);
uint8[0] = 7;

// 7 (0111) XOR 2 (0010) = 5 (0101)
console.log(Atomics.xor(uint8, 0, 2));
// Expected output: 7

console.log(Atomics.load(uint8, 0));
// Expected output: 5
구문
Atomics.xor(typedArray, index, value)
매개 변수
typedArray

정수형 형식화 배열. Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, BigInt64Array, BigUint64Array 중 하나.

index

비트 연산 XOR를 계산할 typedArray의 인덱스입니다.

value

비트 연산 XOR와 같이 계산할 숫자입니다.

반환 값

주어진 위치(typedArray[index])의 예전 값.

예외 설명

비트 연산 XOR은 a와 b 이 다르면 1을 산출합니다. XOR 연산에 대한 진리표는 다음과 같습니다.

a b a ^ b 0 0 0 0 1 1 1 0 1 1 1 0

예를 들어, 5 ^ 1의 비트 연산 XOR의 값은 0100이며 10진수로 4입니다.

5  0101
1  0001
   ----
4  0100
예제 xor 사용하기
const sab = new SharedArrayBuffer(1024);
const ta = new Uint8Array(sab);
ta[0] = 5;
Atomics.xor(ta, 0, 1); // 이전 값인 5를 반환합니다
Atomics.load(ta, 0); // 4
명세 브라우저 호환성 같이 보기

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4