operator^ (<bitset>)
Executa EXCLUSIVE-OR bit a bit entre dois bitsets.
template <size_t size>
bitset<size> operator^(
const bitset<size>& _Left,
const bitset<size>& _Right
);
Parâmetros
_Left
O primeiro dos dois bitsets respectivos cujos elementos devem ser combinada com EXCLUSIVE-ORbit a bit._Right
O segundo de dois valarrays respectivos cujos elementos devem ser combinada com EXCLUSIVE-ORbit a bit.
Valor de retorno
Um bitset cujos elementos são o resultado da execução da operação de EXCLUSIVE-OR nos elementos correspondentes de _Left e _Right.
Exemplo
// bitset_xor.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
#include <string>
using namespace std;
int main()
{
bitset<4> b1 ( string("0101") );
bitset<4> b2 ( string("0011") );
bitset<4> b3 = b1 ^ b2;
cout << "bitset 1: " << b1 << endl;
cout << "bitset 2: " << b2 << endl;
cout << "bitset 3: " << b3 << endl;
}
Requisitos
bitset <deCabeçalho: >
Namespace: std