Поделиться через


bitset::operator!=

Выполняет bitset целевого объекта для неравенства с указанным bitset.

bool operator !=( 
   const bitset<N>& _Right 
) const;

Параметры

  • _Right
    Bitset, которое необходимо сравненным в bitset целевого объекта для неравенства.

Возвращаемое значение

true, если bitsets другие; false, если они совпадают.

Заметки

Bitsets должно иметь проверяется для оператора неравенства функцией члена.

Пример

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 7 );
   bitset<5> b2 ( 7 );
   bitset<5> b3 ( 2 );
   bitset<4> b4 ( 7 );

   if ( b1 != b2 )
      cout << "Bitset b1 is different from bitset b2." << endl;
   else
      cout << "Bitset b1 is the same as bitset b2." << endl;

   if ( b1 != b3 )
      cout << "Bitset b1 is different from bitset b3." << endl;
   else
      cout << "Bitset b1 is the same as bitset b3." << endl;

   // This would cause an error because bitsets must have the
   // same size to be tested
   // if ( b1 != b4 )
   //   cout << "Bitset b1 is different from bitset b4." << endl;
   // else
   //   cout << "Bitset b1 is the same as bitset b4." << endl;
}
  

Требования

Заголовок:<bitset>

Пространство имен: std

См. также

Ссылки

Класс bitset