Condividi tramite


bitset::reference

Una classe proxy che fornisce i riferimenti ai bit è contenuto in un bitset utilizzato per accedere e modificare i singoli bit come classe di supporto per operator[] di bitset della classe.

class reference {
   friend class bitset<N>;
   public:
      reference& operator=(
         bool _Val
      );
      reference& operator=(
         const reference& _Bitref
      );
      bool operator~( ) const;
      operator bool( ) const;
      reference& flip( );
};

Parametri

  • _Val
    Il valore dell'oggetto di tipo bool da assegnare a un bit in un bitset.

  • _Bitref
    Un riferimento al form x [i] a bit nella posizione nei bitset x.

Valore restituito

Un riferimento a bit in bitset specificato dalla posizione dell'argomento per la prima, come funzioni e funzioni membro di classe e true o false, per riflettere il valore di bit modificato in bitset per nella terza e quarta funzioni membro di classe.

Note

Il riferimento alla classe esiste solo come classe di supporto per il **operator[]**bitset. La classe del membro viene descritto un oggetto che può accedere a un singolo bit all'interno di un bitset. Lasciare b essere un oggetto degli oggetti del tipo bool, x e y di tipo bitset<N> e le posizioni valide di J e i all'interno di tale oggetto. La notazione x [i] fa riferimento il bit nella posizione nei bitset x. Le funzioni membro di classi sono, rispettivamente, le seguenti operazioni:

Operazione

Definizione

x[i] = b

Memorizza il valore boolb nella posizione dei bit i in bitset x

x[i] = [J y]

Archiviare il valore di bit yJ[] alla posizione dei bit in bitset x.

b = ~x [i]

Archivia il valore capovolto di bit x[i] in bool B.

b = x[i]

Archiviare il valore di bit x[i] in bool B.

x[i].flip()

Archivia il valore capovolto della parte finale di bit x[i] alla posizione dei bit in X.

Esempio

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 2 );
   bitset<5> b2 ( 6 );
   cout << "The initialized bitset<5> b1( 2 ) is: ( "<< b1 << " )."
        << endl;
   cout << "The initialized bitset<5> b2( 6 ) is: ( "<< b2 << " )."
        << endl;

   // Example of x [i] = b storing bool b at bit position i
   // in bitset x
   b1[ 0 ] = true;
   cout << "The bitset<5> b1 with the bit at position 0 set to 1"
        << " is: ( "<< b1 << " )" << endl;
   
   // Example of x [i] = y [j] storing the bool value of the
   // bit at position j in bitset y at bit position i in bitset x
   b2 [4] = b1 [0];      // b1 [0] = true
   cout << "The bitset<5> b2 with the bit at position 4 set to the "
        << "value\n of the bit at position 0 of the bit in "
        << "bitset<5> b1 is: ( "<<  b2  << " )" << endl;

   // Example of b = ~x [i] flipping the value of the bit at
   // position i of bitset x and storing the value in an 
   // object b of type bool
   bool b = ~b2 [4];      // b2 [4] = false
   if ( b )
      cout << "The value of the object b = ~b2 [4] "
           << "of type bool is true." << endl;
   else
      cout << "The value of the object b = ~b2 [4] "
           << "of type bool is false." << endl;
   
   // Example of b = x [i] storing the value of the bit at
   // position i of bitset x in the object b of type bool
   b = b2 [4];
   if ( b )
      cout << "The value of the object b = b2 [4] "
           << "of type bool is true." << endl;
   else
      cout << "The value of the object b = b2 [4] "
           << "of type bool is false." << endl;

   // Example of x [i] . flip ( ) toggling the value of the bit at
   // position i of bitset x
   cout << "Before flipping the value of the bit at position 4 in "
        << "bitset b2,\n it is ( "<<  b2  << " )." << endl;
   b2 [4].flip( );
   cout << "After flipping the value of the bit at position 4 in "
        << "bitset b2,\n it becomes ( "<<  b2  << " )." << endl;
   bool c;
   c = b2 [4].flip( );
   cout << "After a second toggle, the value of the position 4"
        << " bit in b2 is now: " << c << ".";
}
  

Requisiti

bitset <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe bitset

Sicurezza dei thread nella libreria standard C++