Partilhar via


bitset::size

Retorna o número de bits em um objeto de bitset.

size_t size( ) const;

Valor de retorno

O número de bits, Em, em bitset<Em>.

Exemplo

A o criar este exemplo com o sinalizador de /Wp64 ou em uma plataforma de 64 bits, o compilador que avisará C4267 será gerado.Para obter mais informações sobre este aviso, consulte C4267 de aviso (nível 3) do compilador.

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

int main()
{
    using namespace std;

    bitset<5> b1(6);
    size_t i;

    cout << "The set of bits in bitset<5> b1( 6 ) is: ( "<< b1 << " )"
         << endl;

    i = b1.size();

    cout << "The number of bits in bitset b1 is: " << i << "."
         << endl;
}
  

Requisitos

Cabeçalho: <bitset>

namespace: STD

Consulte também

Referência

bitset Class