Partilhar via


bitset::to_ulong

Converte um objeto de bitset para inteiro que produziria a seqüência de bit contidos se usado para inicializar o bitset.

unsigned long to_ulong( ) const;

Valor de retorno

Um inteiro que produz os bits em um bitset se usado durante a inicialização de bitset.

Comentários

Aplicando a função de membro retornaria o número inteiro que tem a mesma sequência de dígitos 1 e 0 que é localizado em ordem dos bits contidos no bitset.

A função de membro gera overflow_error se qualquer seqüência de bit a bit de bits possui um valor que não pode ser representado como um valor de tipo unsigned long*.*

Exemplo

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 7 );

   cout << "The ordered set of bits in the bitset<5> b1( 7 )"
        << "\n that was generated by the number 7 is: ( "
        << b1 << " )" << endl;

   unsigned long int i;
   i = b1.to_ulong( );
   cout << "The integer returned from the bitset b1,"
        << "\n by the member function to_long( ), that"
        << "\n generated the bits as a base two number is: "
        << i << "." << endl;
}
  

Requisitos

Cabeçalho: <bitset>

namespace: STD

Consulte também

Referência

bitset Class