std::hash<std::filesystem::path>
来自cppreference.com
< cpp | filesystem | path
在标头 <filesystem> 定义
|
||
template<> struct hash<std::filesystem::path>; |
(C++17 起) | |
std::hash 对 std::filesystem::path 的模板特化允许用户获得 std::filesystem::path 的散列值。
此特化的 operator() 为 noexcept。对每个 std::filesystem::path 值 p
,std::hash<std::filesystem::path>{}(p) 等于 std::filesystem::hash_value(p)。
在 C++17 标准出版中缺少这个特化,参见 LWG 问题 3657。
示例
运行此代码
#include <cassert> #include <cstddef> #include <filesystem> #include <iomanip> #include <iostream> #include <unordered_set> namespace fs = std::filesystem; void show_hash(fs::path const& p) { std::cout << std::hex << std::uppercase << std::setw(16) << std::hash<fs::path>{}(p) << " : " << p << '\n'; } int main() { auto tmp1 = fs::path{"/tmp"}; auto tmp2 = fs::path{"/tmp/../tmp"}; assert(!(tmp1 == tmp2)); assert(fs::equivalent(tmp1, tmp2)); show_hash(tmp1); show_hash(tmp2); for (auto s : {"/a///b", "/a//b", "/a/c", "...", "..", ".", ""}) show_hash(s); std::unordered_set<fs::path, std::hash<fs::path>> dirs{ "/bin", "/bin", "/lib", "/lib", "/opt", "/opt", "/tmp", "/tmp/../tmp"}; for (fs::path const& p : dirs) std::cout << p << ' '; std::cout << '\n'; }
可能的输出:
6050C47ADB62DFE5 : "/tmp" 62795A58B69AD90A : "/tmp/../tmp" FF302110C9991974 : "/a///b" FF302110C9991974 : "/a//b" FD6167277915D464 : "/a/c" C42040F82CD8B542 : "..." D2D30154E0B78BBC : ".." D18C722215ED0530 : "." 0 : "" "/tmp/../tmp" "/opt" "/lib" "/tmp" "/bin"
参阅
(C++11) |
散列函数对象 (类模板) |
计算路径对象的散列值 (函数) |