bool bitset<N>::none() const;
#include <bitset>
#include <bitset>
#include <iostream>
int main()
{
using namespace std;
// Create two bitsets
bitset<4> qBits1(0);
bitset<4> qBits2(12);
cout << "bitset<4> #1 : "<< qBits1 << endl;
cout << "bitset<4> #2 : "<< qBits2 << endl;
// Call the none() function to test the bitsets.
cout << (qBits1.none() ? "None" : "Some")
<< " of the bits of bitset<4> #1 are 1." << endl;
cout << (qBits2.none() ? "None" : "Some")
<< " of the bits of bitset<4> #2 are 1." << endl;
// Keep the window open
cin.get();
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.