hash Class
해시 코드 값 계산
template<class Ty>
struct hash
: public unary_function<Ty, size_t> {
size_t operator()(Ty _Val) const;
};
설명
해시 함수 매핑 값의 형식에 적합 한 멤버 함수를 정의 Ty 인덱스 값의 분포를 합니다.멤버 연산자에 대 한 해시 코드를 반환 합니다. _Val, 템플릿 클래스를 사용 하기 적합 한 unordered_map, unordered_multimap, unordered_set, 및 unordered_multiset.Tymay be any scalar type, string, wstring, error_code, error_condition, u16string, or u32string.
예제
// std_tr1__functional__hash.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
#include <unordered_set>
int main()
{
std::unordered_set<int, std::hash<int> > c0;
c0.insert(3);
std::cout << *c0.find(3) << std::endl;
return (0);
}
요구 사항
헤더: <functional>
네임 스페이스: std