std:: hash <std::unique_ptr>
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
| Modifiers | ||||
| Observers | ||||
| Non-member functions | ||||
|
(C++14)
(C++20)
|
||||
|
(until C++20)
(C++20)
|
||||
|
(C++20)
|
||||
| Helper classes | ||||
|
hash
<std::unique_ptr>
|
|
template
<
class
T,
class
Deleter
>
struct hash < std:: unique_ptr < T, Deleter >> ; |
(C++11以降) | |
std::hash の std:: unique_ptr < T, Deleter > に対するテンプレート特殊化は、 std:: unique_ptr < T, Deleter > 型のオブジェクトのハッシュ値をユーザーが取得できるようにします。
std:: hash < std:: unique_ptr < T,D >> の特殊化は、 std:: hash < typename std:: unique_ptr < T,D > :: pointer > が有効な場合に有効化され( std::hash を参照)、それ以外の場合は無効化されます。
有効にすると、与えられた std:: unique_ptr < T, D > p に対して、この特殊化は std:: hash < std:: unique_ptr < T, D >> ( ) ( p ) == std:: hash < typename std:: unique_ptr < T, D > :: pointer > ( ) ( p. get ( ) ) を保証します。
この特殊化のメンバー関数は、ポインタがファンシーポインタである可能性があり、そのハッシュが例外をスローする可能性があるため、noexcept が保証されていません。
例
#include <functional> #include <iostream> #include <memory> struct Foo { Foo(int num) : nr(num) { std::cout << "Foo(" << nr << ")\n"; } ~Foo() { std::cout << "~Foo()\n"; } bool operator==(const Foo &other) const { return nr == other.nr; }; int nr; }; int main() { std::cout << std::boolalpha << std::hex; Foo* foo = new Foo(5); std::unique_ptr<Foo> up(foo); std::cout << "hash(up): " << std::hash<std::unique_ptr<Foo>>()(up) << '\n' << "hash(foo): " << std::hash<Foo*>()(foo) << '\n' << "*up==*foo: " << (*up == *foo) << "\n\n"; std::unique_ptr<Foo> other = std::make_unique<Foo>(5); std::cout << "hash(up): " << std::hash<std::unique_ptr<Foo>>()(up) << '\n' << "hash(other): " << std::hash<std::unique_ptr<Foo>>()(other) << '\n' << "*up==*other: " <<(*up == *other) << "\n\n"; }
出力例:
Foo(5) hash(up): acac20 hash(foo): acac20 *up==*foo: true Foo(5) hash(up): acac20 hash(other): acbc50 *up==*other: true ~Foo() ~Foo()
関連項目
|
(C++11)
|
ハッシュ関数オブジェクト
(クラステンプレート) |