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. |
bitset<N>& reset(); |
(1) | |
bitset<N>& reset( size_t pos ); |
(2) | |
Setzt Bits false .
1) 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.
Setzt alle Bits false
2) Original:
Sets all 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.
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.
Inhaltsverzeichnis |
[Bearbeiten] 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. |
[Bearbeiten] Rückgabewert
*this
[Bearbeiten] 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.
[Bearbeiten] 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
[Bearbeiten] 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) |