Partilhar via


bitset::operator<<

Desloca os bits em um bitset à esquerda um número especificado de posições e retorna o resultado a um novo bitset.

bitset<N> operator<<(
   size_t _Pos
) const;

Parâmetros

  • _Pos
    O número de posições à esquerda que os bits deslocados no bitset devem ser.

Valor de retorno

O bitset alterado com os bits deslocados à esquerda o número de posições necessário.

Comentários

A função de membro de operador retorna bitset(*this) <<= pos, onde <<= desloca os bits em um bitset à esquerda um número especificado de posições e retorna o resultado à bitset de destino.

Exemplo

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 7 );

   cout << "The bitset b1 is: ( "<< b1 << " )." << endl;

   bitset<5> b2;
   b2 = b1 << 2;

   cout << "After shifting the bits 2 positions to the left,\n"
        << " the bitset b2 is: ( "<< b2 << " )."
        << endl;

   bitset<5> b3 = b2 >> 1;

   cout << "After shifting the bits 1 position to the right,\n"
        << " the bitset b3 is: ( " << b3 << " )."
        << endl;
}

Saída

The bitset b1 is: ( 00111 ).
After shifting the bits 2 positions to the left,
 the bitset b2 is: ( 11100 ).
After shifting the bits 1 position to the right,
 the bitset b3 is: ( 01110 ).

Requisitos

Cabeçalho: <bitset>

namespace: STD

Consulte também

Referência

bitset Class