std::bitset::reset
Aus cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> bitset<N>& reset(); |
(1) | |
bitset<N>& reset( size_t pos ); |
(2) | |
Setzt Bits
false .Original:
Sets bits to
false.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Setzt alle Bits
falseOriginal:
Sets all bits to
falseThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
setzt das Bit an der Position zu
pos false .Original:
Sets the bit at position
pos to false.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parameter
| pos | - | die Position des Bits, gesetzt
Original: the position of the bit to set The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
*this
Ausnahmen
1)
2)
Würfe std::out_of_range wenn
pos nicht überein auf eine gültige Position innerhalb der bitsetOriginal:
throws std::out_of_range if
pos does not correspond to a valid position within the bitsetThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Beispiel
#include <iostream>
#include <bitset>
int main()
{
std::bitset<8> b(42);
std::cout << "Bitset is " << b << '\n';
b.reset(1);
std::cout << "After b.reset(1): " << b << '\n';
b.reset();
std::cout << "After b.reset(): " << b << '\n';
}
Output:
Bitset is 00101010
After b.reset(1): 00101000
After b.reset(): 00000000
Siehe auch
sets bits to true or given value (öffentliche Elementfunktion) | |
Schaltet die Werte von Bits Original: toggles the values of bits The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |