命名空间
变体
操作

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::pathpstd::hash<std::filesystem::path>{}(p) 等于 std::filesystem::hash_value(p).

此特化缺失于 C++17 标准出版物中,请参见 LWG issue 3657.

[edit] 示例

#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"

[edit] 另请参见

(C++11)
哈希函数对象
(类模板) [编辑]
计算路径对象的哈希值
(函数) [编辑]