std::filesystem::hash_value
来自 cppreference.com
< cpp | filesystem | path
定义在头文件 <filesystem> 中 |
||
std::size_t hash_value( const std::filesystem::path& p ) noexcept; |
(自 C++17 起) | |
内容 |
[编辑] 参数
p | - | 一个 std::filesystem::path 对象 |
[编辑] 返回值
一个哈希值,使得如果对于两个路径,p1 == p2 那么 hash_value(p1) == hash_value(p2).
返回值与 std::hash 一致。
[编辑] 备注
两个路径的相等性通过分别比较每个组件来确定,因此,例如 "a//b" 等于 "a/b" 并且具有相同的 hash_value
。
hash_value
来自于 Boost.filesystem 库,它用于与 boost.hash 的互操作性(通过 依赖于参数的查找 找到 hash_value
或使用 boost::hash_value
,如果可用)。
[编辑] 示例
运行此代码
#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) << fs::hash_value(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); // A hash function object to work with unordered_* containers: struct PathHash { std::size_t operator()(fs::path const& p) const noexcept { return fs::hash_value(p); } }; std::unordered_set<fs::path, PathHash> 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++17)(C++17)(直到 C++20)(C++17)(直到 C++20)(C++17)(直到 C++20)(C++17)(直到 C++20)(C++17)(直到 C++20)(C++20) |
按字典序比较两个路径 (函数) |
(C++17) |
检查两个路径是否指向相同的文件系统对象 (函数) |
(C++11) |
哈希函数对象 (类模板) |
对 std::filesystem::path 的哈希支持 (类模板特化) |