|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member types | ||||
| Member functions | ||||
(until C++20) | ||||
| Element access | ||||
| Capacity | ||||
| Modifiers | ||||
bitset::flip | ||||
| Conversions | ||||
(C++11) | ||||
| Non-member functions | ||||
| Helper classes | ||||
(C++11) | ||||
bitset& flip(); | (1) | (noexcept since C++11) (constexpr since C++23) |
bitset& flip(std::size_t pos); | (2) | (constexpr since C++23) |
Flips bits, i.e. changestrue values tofalse andfalse values totrue. Equivalent to a logical NOT operation on part or all of the bitset.
Contents |
| pos | - | the position of the bit to flip |
*this
#include <bitset>#include <iostream> int main(){std::bitset<4> flops; std::cout<< flops<<'\n'<< flops.flip(0)<<'\n'<< flops.flip(2)<<'\n'<< flops.flip()<<'\n';}
Output:
0000000101011010
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 2250 | C++98 | the behavior was undefined ifpos does not correspond to a valid bit position | always throws an exception in this case |
| sets bits totrue or given value (public member function)[edit] | |
| sets bits tofalse (public member function)[edit] | |
| performs binary AND, OR, XOR and NOT (public member function)[edit] | |
| flips all the bits (public member function of std::vector<bool,Allocator>)[edit] |