| (since C++11) |
The template specialization of std::hash
for std::unique_ptr<T, Deleter>
allows users to obtain hashes of objects of type std::unique_ptr<T, Deleter>
.
For a given std::unique_ptr<T, Deleter> p
, this specialization ensures that std::hash<std::unique_ptr<T, Deleter>>()(p) == std::hash<T*>()(p.get())
.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include <iostream> #include <memory> #include <functional> struct Foo { Foo() { std::cout << "Foo...\n" ; } ~Foo() { std::cout << "~Foo...\n\n" ; } }; int main() { Foo* foo = new Foo(); std::unique_ptr<Foo> up(foo); std::cout << "hash(up): " << std::hash<std::unique_ptr<Foo>>()(up) << '\n' ; std::cout << "hash(foo): " << std::hash<Foo*>()(foo) << '\n' ; } |
Output:
1 2 3 4 | Foo... hash(up): 3686401041 hash(foo): 3686401041 ~Foo... |
See also
(C++11) | hash function object (class template) |
Please login to continue.