Condividi tramite


bitset::operator>>

Scorre i bit in un bitset a destra di un numero specificato di posizionare e restituisce il risultato a un nuovo bitset.

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

Parametri

  • _Pos
    Il numero di percorsi a destra i bit nel bitset è possibile scorrere.

Valore restituito

Un nuovo bitset in cui i bit sono stati fatti scorrere verso destra il numero desiderato di posizioni in relazione al bitset di destinazione.

Esempio

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

Requisiti

intestazione: <bitset>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

bitset Class