Operatori <stack>
operator!=
Verifica se l'oggetto 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
Oggetto di tipo stack
.
right
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.
Osservazioni:
Il confronto tra gli oggetti stack si basa su un confronto a coppie dei relativi elementi. Due stack sono uguali se hanno lo stesso numero di elementi e se i rispettivi elementi hanno gli stessi valori. In caso contrario, non sono uguali.
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;
}
The stacks s1 and s2 are not equal.
The stacks s1 and s3 are equal.
operator<
Verifica se l'oggetto stack a sinistra dell'operatore è minore dell'oggetto stack a destra.
bool operator<(const stack <Type, Container>& left, const stack <Type, Container>& right);
Parametri
left
Oggetto di tipo stack
.
right
Oggetto di tipo stack
.
Valore restituito
true
se lo stack a sinistra dell'operatore è minore di e non uguale allo stack a destra dell'operatore; in caso contrario false
, .
Osservazioni:
Il confronto tra gli oggetti stack si basa su un confronto a coppie dei relativi elementi. La relazione minore di tra due oggetti stack si basa su un confronto della prima coppia di elementi non uguali.
Esempio
// stack_op_lt.cpp
// compile with: /EHsc
#include <stack>
#include <list>
#include <iostream>
int main( )
{
using namespace std;
// Declares stacks with list base container
stack <int, list<int> > s1, s2, s3;
s1.push( 2 );
s1.push( 4 );
s1.push( 6 );
s1.push( 8 );
s2.push( 5 );
s2.push( 10 );
s3.push( 2 );
s3.push( 4 );
s3.push( 6 );
s3.push( 8 );
if ( s1 >= s2 )
cout << "The stack s1 is greater than or equal to "
<< "the stack s2." << endl;
else
cout << "The stack s1 is less than "
<< "the stack s2." << endl;
if ( s1>= s3 )
cout << "The stack s1 is greater than or equal to "
<< "the stack s3." << endl;
else
cout << "The stack s1 is less than "
<< "the stack s3." << endl;
// to print out the stack s1 ( by unstacking the elements):
stack <int>::size_type i_size_s1 = s1.size( );
cout << "The stack s1 from the top down is: ( ";
unsigned int i;
for ( i = 1 ; i <= i_size_s1 ; i++ )
{
cout << s1.top( ) << " ";
s1.pop( );
}
cout << ")." << endl;
}
The stack s1 is less than the stack s2.
The stack s1 is greater than or equal to the stack s3.
The stack s1 from the top down is: ( 8 6 4 2 ).
operator<=
Verifica se l'oggetto stack a sinistra dell'operatore è minore o uguale all'oggetto stack a destra.
bool operator<=(const stack <Type, Container>& left, const stack <Type, Container>& right);
Parametri
left
Oggetto di tipo stack
.
right
Oggetto di tipo stack
.
Valore restituito
true
se lo stack a sinistra dell'operatore è minore o uguale allo stack a destra dell'operatore; in caso contrario false
, .
Osservazioni:
Il confronto tra gli oggetti stack si basa su un confronto a coppie dei relativi elementi. La relazione minore di o uguale a tra due oggetti stack si basa su un confronto della prima coppia di elementi non uguali.
Esempio
// stack_op_le.cpp
// compile with: /EHsc
#include <stack>
#include <iostream>
int main( )
{
using namespace std;
// Declares stacks with default deque base container
stack <int> s1, s2, s3;
s1.push( 5 );
s1.push( 10 );
s2.push( 1 );
s2.push( 2 );
s3.push( 5 );
s3.push( 10 );
if ( s1 <= s2 )
cout << "The stack s1 is less than or equal to "
<< "the stack s2." << endl;
else
cout << "The stack s1 is greater than "
<< "the stack s2." << endl;
if ( s1 <= s3 )
cout << "The stack s1 is less than or equal to "
<< "the stack s3." << endl;
else
cout << "The stack s1 is greater than "
<< "the stack s3." << endl;
}
The stack s1 is greater than the stack s2.
The stack s1 is less than or equal to the stack s3.
operator==
Verifica se l'oggetto stack a sinistra dell'operatore è uguale all'oggetto stack a destra.
bool operator==(const stack <Type, Container>& left, const stack <Type, Container>& right);
Parametri
left
Oggetto di tipo stack
.
right
Oggetto di tipo stack
.
Valore restituito
true
se gli stack o gli stack sono uguali; false
se gli stack o gli stack non sono uguali.
Osservazioni:
Il confronto tra gli oggetti stack si basa su un confronto a coppie dei relativi elementi. Due stack sono uguali se hanno lo stesso numero di elementi e se i rispettivi elementi hanno gli stessi valori. In caso contrario, non sono uguali.
Esempio
// stack_op_eq.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 equal." << endl;
else
cout << "The stacks s1 and s2 are not equal." << endl;
if ( s1 == s3 )
cout << "The stacks s1 and s3 are equal." << endl;
else
cout << "The stacks s1 and s3 are not equal." << endl;
}
The stacks s1 and s2 are not equal.
The stacks s1 and s3 are equal.
operator>
Verifica se l'oggetto stack a sinistra dell'operatore è maggiore dell'oggetto stack a destra.
bool operator>(const stack <Type, Container>& left, const stack <Type, Container>& right);
Parametri
left
Oggetto di tipo stack
.
right
Oggetto di tipo stack
.
Valore restituito
true
se lo stack a sinistra dell'operatore è maggiore e non uguale allo stack a destra dell'operatore; in caso contrario false
, .
Osservazioni:
Il confronto tra gli oggetti stack si basa su un confronto a coppie dei relativi elementi. La relazione maggiore di tra due oggetti stack si basa su un confronto della prima coppia di elementi non uguali.
Esempio
// stack_op_gt.cpp
// compile with: /EHsc
#include <stack>
#include <list>
#include <iostream>
int main( )
{
using namespace std;
// Declares stacks with list base container
stack <int, list<int> > s1, s2, s3;
s1.push( 1 );
s1.push( 2 );
s1.push( 3 );
s2.push( 5 );
s2.push( 10 );
s3.push( 1 );
s3.push( 2 );
if ( s1 > s2 )
cout << "The stack s1 is greater than "
<< "the stack s2." << endl;
else
cout << "The stack s1 is not greater than "
<< "the stack s2." << endl;
if ( s1> s3 )
cout << "The stack s1 is greater than "
<< "the stack s3." << endl;
else
cout << "The stack s1 is not greater than "
<< "the stack s3." << endl;
}
The stack s1 is not greater than the stack s2.
The stack s1 is greater than the stack s3.
operator>=
Verifica se l'oggetto stack a sinistra dell'operatore è maggiore o uguale all'oggetto stack a destra.
bool operator>=(const stack <Type, Container>& left, const stack <Type, Container>& right);
Parametri
left
Oggetto di tipo stack
.
right
Oggetto di tipo stack
.
Valore restituito
true
se lo stack a sinistra dell'operatore è strettamente minore dello stack a destra dell'operatore; in caso contrario false
, .
Osservazioni:
Il confronto tra gli oggetti stack si basa su un confronto a coppie dei relativi elementi. La relazione maggiore di o uguale a tra due oggetti stack si basa su un confronto della prima coppia di elementi non uguali.
Esempio
// stack_op_ge.cpp
// compile with: /EHsc
#include <stack>
#include <list>
#include <iostream>
int main( )
{
using namespace std;
// Declares stacks with list base container
stack <int, list<int> > s1, s2, s3;
s1.push( 1 );
s1.push( 2 );
s2.push( 5 );
s2.push( 10 );
s3.push( 1 );
s3.push( 2 );
if ( s1 >= s2 )
cout << "The stack s1 is greater than or equal to "
<< "the stack s2." << endl;
else
cout << "The stack s1 is less than "
<< "the stack s2." << endl;
if ( s1>= s3 )
cout << "The stack s1 is greater than or equal to "
<< "the stack s3." << endl;
else
cout << "The stack s1 is less than "
<< "the stack s3." << endl;
}
The stack s1 is less than the stack s2.
The stack s1 is greater than or equal to the stack s3.