operator& (<bitset>)
Executa AND 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 cujos elementos respectivos devem ser combinado com ANDbit a bit._Right
O segundo dos dois valarrays cujos elementos respectivos devem ser combinado com ANDbit a bit.
Valor de retorno
Um bitset cujos elementos sejam o resultado de executar a operação de AND nos elementos correspondentes de _Left e _Right.
Exemplo
// bitset_and.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
Cabeçalho: <bitset>
namespace: STD