Sdílet prostřednictvím


operator!= (<queue>)

Zkoušky, pokud objekt fronty na levé straně operátoru není rovno objekt fronty na pravé straně.

bool operator!=( 
   const queue <Type, Container>& _Left, 
   const queue <Type, Container>& _Right, 
);

Parametry

  • _Left
    Objekt typu Fronta.

  • _Right
    Objekt typu Fronta.

Vrácená hodnota

true Pokud fronty není stejný; false Pokud fronty jsou shodné.

Poznámky

Srovnání mezi objekty fronty je založena na porovnání ukládání svých prvků.Dvě fronty jsou rovny, pokud mají stejný počet prvků a jejich odpovídající prvky mají stejné hodnoty.Jinak nerovné.

Příklad

// queue_op_ne.cpp
// compile with: /EHsc
#include <queue>
#include <list>
#include <iostream>

int main( )
{
   using namespace std;

   // Declares queues with list base containers
   queue <int, list<int> > q1, q2, q3;

   // The following line would have caused an error because vector 
   // does not support pop_front( ) and so cannot be adapted
   // by queue as a base container
   // queue <int, vector<int> > q1, q2, q3;

   q1.push( 1 );
   q2.push( 1 );
   q2.push( 2 );
   q3.push( 1 );

   if ( q1 != q2 )
      cout << "The queues q1 and q2 are not equal." << endl;
   else
      cout << "The queues q1 and q2 are equal." << endl;


   if ( q1 != q3 )
      cout << "The queues q1 and q3 are not equal." << endl;
   else
      cout << "The queues q1 and q3 are equal." << endl;
}
  

Požadavky

Záhlaví:<fronty>

Obor názvů: std

Viz také

Referenční dokumentace

Standardní knihovna šablon