Partilhar via


bitset::reference

Uma classe de proxy que fornecesse referências a bit continha em um bitset que é usado para acessar e manipular os bits individuais como um auxiliar classe para operator[] de bitset da 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( );
};

Parâmetros

  • _Val
    O valor do tipo bool a ser atribuído a um bit em um bitset.

  • _Bitref
    Uma referência do formulário [] x aprenda ao bit na posição me no bitset x.

Valor de retorno

Uma referência ao bit no bitset especificado pela posição do argumento para a primeira, como, e quintas funções de membro de referência da classe, e o true ou o false, refletir o valor do bit no bitset alterado para a terceira e quartas funções de membro de referência da classe.

Comentários

A referência da classe existe apenas como uma classe auxiliar para o bitset operator[].A classe de membro descreve um objeto que possa acessar um bit individual dentro de um bitset.Deixe b ser um objeto de objetos do tipo, boolde x e y do tipo bitset<Em>, e de posições válidos de i e j de dentro de um objeto.A notação x [i] referencia o bit na posição i no bitset x.As funções de membro de referência da classe fornece, em ordem, as seguintes operações:

Operação

Definição

x[i] = b

Armazena o valor boolb na posição de bits i no bitset x.

x[i] = y[j]

Armazena o valor de bit y[j] na posição de bits i no bitset x.

b = ~x[i]

Armazena o valor bit inverso de x[i] em boolb.

b = x[i]

Armazena o valor de bit x[i] em boolb.

x[i].flip( )

Armazena o valor inverso de volta de bit x[i] na posição de bits i em x.

Exemplo

// 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 << ".";
}
  
  
  
  
  
  
  

Requisitos

Cabeçalho: <bitset>

namespace: STD

Consulte também

Referência

bitset Class

Segurança do thread na biblioteca C++ padrão