Espacios de nombres
Variantes

std::bitset::operator<<,<<=,>>,>>=

De cppreference.com
 
 
Biblioteca de servicios
Apoyo del lenguaje
Apoyo de tipos (tipos básicos, RTTI)
Macros de prueba de característica de la biblioteca (C++20)
Servicios de programa
Funciones variádicas
Apoyo de corrutinas (C++20)
Apoyo de contratos (C++26)
Comparación de tres vías (C++20)
(C++20)
(C++20)(C++20)(C++20)  
(C++20)(C++20)(C++20)

 
std::bitset
Tipos de miembros
Original:
Member types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Las funciones miembro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Elemento acceso
Original:
Element access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Capacidad
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Modificadores
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Conversiones
Original:
Conversions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Terceros funciones
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Clases de ayuda
Original:
Helper classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
 
bitset<N> operator<<( size_t pos ) const;
(1)
bitset<N>& operator<<=( size_t pos );
(2)
bitset<N> operator>>( size_t pos ) const;
(3)
bitset<N>& operator>>=( size_t pos );
(4)

Performs binary shift left and binary shift right. Zeroes are shifted in.

1-2) Performs binary shift left. The (2) version is destructive, i.e. performs the shift to the current object.

3-4) Performs binary shift right. The (4) version is destructive, i.e. performs the shift to the current object.

Parámetros

pos - number of positions to shift the bits

Valor de retorno

1,3) new bitset object containing the shifted bits

2,4) *this

Ejemplo

#include <iostream>
#include <bitset>

int main()
{
    std::bitset<8> b("01110010");
    std::cout << "initial value: " << b << '\n';

    while (b.any()) {
        while (!b.test(0)) {
            b >>= 1;
        }
        std::cout << b << '\n';
        b >>= 1;
    }
}

Salida:

initial value: 01110010
00111001
00000111
00000011
00000001

Ver también

realiza operación binaria AND, OR, XOR y NOT
(función miembro pública) [editar]