共用方式為


operator== (<deque>)

測試,如果在運算子左方的雙向佇列物件等於右邊的雙向佇列物件。

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

參數

  • _Left
    型別 deque 的物件。

  • _Right
    型別 deque 的物件。

傳回值

true ,如果在運算子左方的雙向佇列與雙向佇列相等在運算子右方的;否則 false

備註

在雙向佇列物件之間的比較可能會依據其項目比較配對。 兩個雙佇列是相等的,如果它們有相同的元素數,且其元素具有相同的值。 否則就是不相等。

範例

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

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

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

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

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

需求

標頭: <deque>

命名空間: std

請參閱

參考

deque::operator== 和 deque::operator<

標準樣板程式庫