共用方式為


binary_xor()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

傳回兩個值的位 xor 運算結果。

語法

binary_xor(value1,value2)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
value1 int ✔️ XOR 作業的左側值。
value2 int ✔️ XOR 作業的右側值。

傳回

傳回一對數字的邏輯 XOR 運算:value1 ^ value2。

範例

binary_xor(1,1)

輸出

結果
0
binary_xor(1,2)

輸出

結果
3