Condividi tramite


operator!= (<stack>)

Test se l'oggetto dello stack a sinistra dell'operatore non è uguale all'oggetto stack a destra.

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

Parametri

  • _Left
    Un oggetto di tipo stack.

  • _Right
    Un oggetto di tipo stack.

Valore restituito

true se gli stack o gli stack non sono uguali; false se gli stack o gli stack sono uguali.

Note

Il confronto tra gli oggetti stack è basato pairwise su un confronto dei relativi elementi.Due stack sono uguali se hanno lo stesso numero di elementi e i rispettivi elementi hanno gli stessi valori.In caso contrario, sono diversi.

Esempio

// stack_op_me.cpp
// compile with: /EHsc
#include <stack>
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   // Declares stacks with vector base containers
   stack <int, vector<int> > s1, s2, s3;

   // The following would have cause an error because stacks with
   // different base containers are not equality comparable
   // stack <int, list<int> >  s3;

   s1.push( 1 );
   s2.push( 2 );
   s3.push( 1 );

   if ( s1 != s2 )
      cout << "The stacks s1 and s2 are not equal." << endl;
   else
      cout << "The stacks s1 and s2 are equal." << endl;

   if ( s1 != s3 )
      cout << "The stacks s1 and s3 are not equal." << endl;
   else
      cout << "The stacks s1 and s3 are equal." << endl;
}
  
  

Requisiti

intestazione: <stack>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

Libreria di modelli standard