共用方式為


operator== (unordered_set)

測試在運算子左方的 unordered_set 物件是否等於右邊的 unordered_set 物件。

bool operator==(
   const unordered_set <Key, Hash, Pred, Allocator>& _Left,
   const unordered_set <Key, Hash, Pred, Allocator>& _Right
);

參數

  • _Left
    型別 unordered_set 的物件。

  • _Right
    型別 unordered_set 的物件。

傳回值

true ,如果 unordered_sets 相等; false ,如果不相等。

備註

在 unordered_set 物件之間的比較不受儲存其元素的選擇性命令的。 兩 unordered_sets 相等,則它們具有相同項目數目,而容器中的項目是項目的變更在另一個容器的。 否則就是不相等。

範例

 
// unordered_set_eq.cpp 
// compile by using: cl.exe /EHsc /nologo /W4 /MTd 
#include <unordered_set> 
#include <iostream> 
#include <ios>

int main() 
{ 
    using namespace std;

    unordered_set<char> c1, c2, c3;

    c1.insert('a'); 
    c1.insert('b'); 
    c1.insert('c'); 

    c2.insert('c'); 
    c2.insert('a'); 
    c2.insert('d'); 

    c3.insert('c'); 
    c3.insert('a'); 
    c3.insert('b'); 

   cout << boolalpha;
   cout << "c1 == c2: " << (c1 == c2) << endl; 
   cout << "c1 == c3: " << (c1 == c3) << endl; 
   cout << "c2 == c3: " << (c2 == c3) << endl; 

    return (0); 
} 

輸出:

c1 == c2: false

c1 == c3: true

c2 == c3: false

需求

標題: <unordered_set>

命名空間: std

請參閱

參考

標準樣板程式庫