BigInteger.ExclusiveOr(BigInteger, BigInteger) Operador
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Executa uma operação exclusiva Or
bit a bit (XOr
) em dois valores BigInteger.
public:
static System::Numerics::BigInteger operator ^(System::Numerics::BigInteger left, System::Numerics::BigInteger right);
public:
static System::Numerics::BigInteger operator ^(System::Numerics::BigInteger left, System::Numerics::BigInteger right) = System::Numerics::IBitwiseOperators<System::Numerics::BigInteger, System::Numerics::BigInteger, System::Numerics::BigInteger>::op_ExclusiveOr;
public static System.Numerics.BigInteger operator ^ (System.Numerics.BigInteger left, System.Numerics.BigInteger right);
static member ( ^^^ ) : System.Numerics.BigInteger * System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Operator Xor (left As BigInteger, right As BigInteger) As BigInteger
Parâmetros
- left
- BigInteger
O primeiro valor.
- right
- BigInteger
O segundo valor.
Retornos
O resultado da operação Or
bit a bit.
Implementações
Comentários
O resultado de uma operação exclusiva Or
bit a bit é true
se os valores dos dois bits são diferentes; caso contrário, é false
. A tabela a seguir ilustra a operação exclusiva Or
.
Bit x in left |
Bit x in right |
Valor retornado |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
O ExclusiveOr método habilita o código como o seguinte:
BigInteger number1 = BigInteger.Pow(2, 127);
BigInteger number2 = BigInteger.Multiply(163, 124);
BigInteger result = number1 ^ number2;
let number1 = BigInteger.Pow(2, 127)
let number2 = BigInteger.Multiply(163, 124)
let result = number1 ^^^ number2
Dim number1 As BigInteger = BigInteger.Pow(2, 127)
Dim number2 As BigInteger = BigInteger.Multiply(163, 124)
Dim result As BigInteger = number1 XOr number2
O ExclusiveOr método executa a operação exclusiva Or
bit a bit em dois BigInteger valores como se ambos estivessem na representação complementar de dois com a extensão de sinal virtual.