std::bitset::operator[]
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. |
bool operator[]( std::size_t pos ) const; constexpr bool operator[]( std::size_t pos ) const; |
(1) | (bis C + +11) (seit C++11) |
reference operator[]( std::size_t pos ); |
(2) | |
Greift auf das Bit an Position
pos
. Die erste Version gibt den Wert des Bits, gibt die zweite Version ein Objekt vom Typ std::bitset::reference die Änderung des Wertes ermöglicht .Original:
Accesses the bit at position
pos
. The first version returns the value of the bit, the second version returns an object of type std::bitset::reference that allows modification of the value.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.
Im Gegensatz zu
test()
, nicht werfen Ausnahmen: das Verhalten ist undefiniert, wenn pos
außerhalb der Grenzen .Original:
Unlike
test()
, does not throw exceptions: the behavior is undefined if pos
is out of bounds.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click
You can help to correct and verify the translation. Click