共用方式為


operator== (multiset)

測試,如果在運算子左方的多重集物件等於右邊的多重集物件。

bool operator!==( 
   const multiset <Key, Traits, Allocator>& _Left, 
   const multiset <Key, Traits, Allocator>& _Right 
);

參數

  • _Left
    型別 multiset 的物件。

  • _Right
    型別 multiset 的物件。

傳回值

true ,如果在運算子左方的多重集與多重集相等在運算子右方的;否則 false

備註

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

範例

// multiset_op_eq.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;
   multiset <int> s1, s2, s3;
   int i;

   for ( i = 0 ; i < 3 ; i++ )
   {
      s1.insert ( i );
      s2.insert ( i * i );
      s3.insert ( i );
   }

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

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

需求

標頭: <set>

命名空間: std

請參閱

參考

標準樣板程式庫