bitset::reset
Wszystkie bity w bitset jest zerowana lub resetuje nieco w określonym położeniu na 0.
bitset<N>& reset( );
bitset<N>& reset(
size_t _Pos
);
Parametry
- _Pos
Pozycja bit bitset, aby ustawić na 0.
Wartość zwracana
Kopia bitset, dla którego wywołano funkcję członka.
Uwagi
Funkcję drugiego członka wyrzuca out_of_range wyjątek, jeżeli pozycja określona jest większy niż rozmiar bitset.
Przykład
// bitset_reset.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
int main( )
{
using namespace std;
bitset<5> b1 ( 13 );
cout << "The set of bits in bitset<5> b1(13) is: ( "<< b1 << " )"
<< endl;
bitset<5> b1r3;
b1r3 = b1.reset( 2 );
cout << "The collecion of bits obtained from resetting the\n"
<< " third bit of bitset b1 is: ( "<< b1r3 << " )"
<< endl;
bitset<5> b1r;
b1r = b1.reset( );
cout << "The collecion of bits obtained from resetting all\n"
<< " the elements of the bitset b1 is: ( "<< b1r << " )"
<< endl;
}
Wymagania
Nagłówek:<bitset>
Przestrzeń nazw: std