Udostępnij za pośrednictwem


operator== (<stack>)

Testy, jeśli obiekt stosu po lewej stronie operatora jest równa stos obiektów po prawej stronie.

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

Parametry

  • _Left
    Obiekt typu stos.

  • _Right
    Obiekt typu stos.

Wartość zwracana

TRUE stosy lub stosy są równe; FALSE stosy lub stosy nie są równe.

Uwagi

Porównanie obiektów na stosie opiera się na parowania porównanie ich elementów.Dwa stosy są równe, jeśli mają taką samą liczbę elementów i ich odpowiednich elementów mają te same wartości.W przeciwnym razie są nierówne.

Przykład

// 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;
}
  
  

Wymagania

Nagłówek: <stack>

Obszar nazw: std

Zobacz też

Informacje

Standardowa biblioteka szablonu