다음을 통해 공유


operator!= (<stack>)

오른쪽에는 연산자의 왼쪽에는 스택 개체를 쌓으려면 같지 않으면 테스트 개체입니다.

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

매개 변수

  • _Left
    개체 형식의 스택.

  • _Right
    개체 형식의 스택.

반환 값

true 이면 스택 또는 스택; 같지 않으면 false 이면 스택 또는 스택 같은 경우.

설명

스택 개체 비교 pairwise 요소 비교를 기반으로 합니다.두 스택을 같은 수의 요소 들 각각의 요소 값이 같은 경우 같습니다.그렇지 않으면 두 개체는 서로 다른 개체입니다.

예제

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

요구 사항

헤더: <stack>

네임 스페이스: std

참고 항목

참조

표준 템플릿 라이브러리