Libreria C ++ Bitset - Operatore == Funzione

Descrizione

La funzione C ++ std::bitset::operator== verifica se due set di bit sono uguali o meno.

Dichiarazione

Di seguito è riportata la dichiarazione per std :: bitset :: operator == function form std :: bitset header.

C ++ 98

bool operator== (const bitset& other) const;

C ++ 11

bool operator== (const bitset& other) const noexcept;

Parametri

other - Un altro oggetto bitset.

Valore di ritorno

Restituisce vero se entrambi i set di bit sono uguali altrimenti falso.

Eccezioni

Questa funzione membro non genera mai eccezioni.

Esempio

L'esempio seguente mostra l'utilizzo della funzione std :: bitset :: operator ==.

#include <iostream>
#include <bitset>

using namespace std;

int main(void) {
   bitset<4> b1("1010");
   bitset<4> b2("1010");

   if (b1 == b2)
      cout << "Both bitsets are equal." << endl;
   b1 >>= 1;

   if (!(b1 == b2))
      cout << "Both bitsets are not equal." << endl;

   return 0;
}

Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:

Both bitsets are equal.
Both bitsets are not equal.