Partager via


operator!= (<deque>)

Tests if the deque object on the left side of the operator is not equal to the deque object on the right side.

bool operator!=( 
   const deque<Type, Allocator>& _Left, 
   const deque<Type, Allocator>& _Right 
);

Paramètres

  • _Left
    Objet de type deque.

  • _Right
    Objet de type deque.

Valeur de retour

true if the deque objects are not equal; false if the deque objects are equal.

Notes

The comparison between deque objects is based on a pairwise comparison of their elements. Two deque objects are equal if they have the same number of elements and their respective elements have the same values. Sinon, ils sont inégaux.

Exemple

// deque_op_ne.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( ) 
{
   using namespace std; 
   deque <int> c1, c2;

   c1.push_back( 1 );
   c2.push_back( 2 );

   if ( c1 != c2 )
      cout << "The deques are not equal." << endl;
   else
      cout << "The deques are equal." << endl;
}
  

Configuration requise

En-tête: <deque>

Espace de noms : std

Voir aussi

Référence

Bibliothèque STL (Standard Template Library)