bool test( size_t pos ) const; |
Returns the value of the bit at the position pos
.
Unlike operator[]
, performs a bounds check and throws std::out_of_range
if pos
does not correspond to a valid position in the bitset.
pos | - | position of the bit to return |
true
if the requested bit is set, false
otherwise.
std::out_of_range
if pos
does not correspond to a valid position within the bitset.
#include <iostream> #include <bitset> int main() { std::bitset<10> b1("1111010000"); size_t idx = 0; while (idx < b1.size() && !b1.test(idx)) { ++idx; } if (idx < b1.size()) { std::cout << "first set bit at index " << idx << '\n'; } else { std::cout << "no set bits\n"; } }
Output:
first set bit at index 4
accesses specific bit (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/bitset/test