Partilhar via


bitset::operator>>

Desloca os bits em um bitset à direita 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 à direita os bits em bitset deve ser deslocado.

Valor de retorno

Um novo bitset onde os bits deslocados à direita é necessário o número de posições relativo ao bitset de destino.

Exemplo

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

Requisitos

Cabeçalho: <bitset>

namespace: STD

Consulte também

Referência

bitset Class