Sdílet prostřednictvím


bitset::test

Ověřuje, zda je bit na určené pozici v bitset je nastavena na 1.

bool test(
   size_t _Pos,
) const;

Parametry

  • _Pos
    Pozice je bit v bitset ke zkouškám pro jeho hodnotu.

Vrácená hodnota

true Pokud je nastaven bit určený v argumentu umístění 1. jinak false.

Poznámky

Členské funkce vyvolá out_of_range výjimku, která je velikost bitset je menší nebo rovna pozici zadaný v argumentu.

Příklad

// bitset_test.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>

int main( )
{
   using namespace std;

   bitset<5> b1 ( 6 );
   bool b;
   bitset<5>::element_type e;

   cout << "Original bitset b1(6) is: ( "<< b1 << " )"
        << endl;
   cout << "Note: positions in a bitset are numbered\n"
         << " from the right starting with 0.\n" << endl;

   b = b1.test ( 3 );

   if ( b )
      cout << "The bit at position 3 of bitset b1 "
           << "has a value of 1." << endl;
   else
      cout << "The bit at position 3 of bitset b1 "
           << "has a value of 0." << endl;

   b1[3] = 1;
   cout << "Bitset b1 modified by b1[3] = 1 is: ( "<< b1 << " )"
        << endl;
   
   e = b1.test ( 3 );
   if ( e )
      cout << "The bit at position 3 of bitset b1 "
           << "has a value of 1." << endl;
   else
      cout << "The bit at position 3 of bitset b1 "
           << "has a value of 0." << endl;
}
  

Požadavky

Záhlaví:<bitset>

Obor názvů: std

Viz také

Referenční dokumentace

bitset – třída