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 형식의 개체입니다.
반환 값
trueunordered_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