Partager via


bitset::operator&=

Exécute une combinaison par bit de bitsets suivant l'opération logique ET.

bitset<N>& operator&=( 
   const bitset<N>& _Right 
);

Paramètres

  • _Right
    Le bitset qui doit être combiné bit à bit au bitset cible.

Valeur de retour

Le bitset cible modifié résultant de l'opération bits à bits ET avec le bitset spécifié comme paramètre.

Notes

Deux bits combinées par l'opérateur ET retournent true si chaque bit est true ; sinon, la combinaison retourne false.

Les bitsets doivent avoir la même taille pour être combinés avec l'opérateur ET par la fonction membre opérateur.

Exemple

// bitset_op_bitwise.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>

int main( )
{
   using namespace std;

   bitset<5> b1 ( 7 );
   bitset<5> b2 ( 11 );
   bitset<4> b3 ( 7 );

   cout << "The target bitset b1 is:    ( "<< b1 << " )." << endl;
   cout << "The parameter bitset b2 is: ( "<< b2 << " )." << endl;
   cout << endl;

   b1 &= b2;
   cout << "After bitwise AND combination,\n"
        << " the target bitset b1 becomes:   ( "<< b1 << " )." 
        << endl;

   // Note that the parameter-specified bitset is unchanged
   cout << "The parameter bitset b2 remains: ( "<< b2 << " )." 
        << endl;

   // The following would cause an error because the bisets 
   // must be of the same size to be combined
   // b1 &= b3;
}
  

Configuration requise

En-tête : <bitset>

Espace de noms : std

Voir aussi

Référence

bitset, classe