std::hash <std::experimental::optional>
来自cppreference.com
< cpp | experimental | optional
在标头 <experimental/optional> 定义
|
||
template< class T > struct hash<std::experimental::optional<T>>; |
(库基础 TS) | |
std::hash 针对 std::experimental::optional 类的特化允许用户获取 optional
对象中所含值的散列。
模板形参
T | - | optional 对象所含值的类型。std::hash<T> 的特化必须满足类模板 hash 的要求。
|
示例
运行此代码
#include <experimental/optional> #include <iostream> #include <string> #include <unordered_set> using namespace std::literals; int main() { // hash<optional> 使其可以用于 unordered_set std::unordered_set<std::experimental::optional<std::string>> s = { "abc"s, std::experimental::nullopt, "def"s }; for (const auto& o : s) std::cout << o.value_or("(null)") << ' '; std::cout << '\n'; }
可能的输出:
def abc (null)
参阅
(C++11) |
散列函数对象 (类模板) |