std::hash (std::string, std::wstring, std::u16string, std::u32string, std::pmr::string, std::pmr::wstring, std::pmr::u16string, std::pmr::u32string)
< cpp | string | basic string
定义于头文件 <string>
|
||
template<> struct hash<std::string>; template<> struct hash<std::wstring>; |
(C++11 起) | |
template<> struct hash<std::u8string>; |
(C++20 起) | |
template<> struct hash<std::pmr::string>; template<> struct hash<std::pmr::wstring>; |
(C++20 起) | |
std::hash 对各种字符串类的模板特化允许用户获得字符串的哈希。
这些哈希等于对应 std::basic_string_view 类的哈希:若 S 是这些 string 类型之一, SV 是对应的 string_view 类型,而 s 是 S 类型的对象,则 std::hash<S>()(s) == std::hash<SV>()(SV(s)) 。 |
(C++17 起) |
示例
下列代码显示 string 上使用的哈希函数的一种可能输出:
运行此代码
#include <iostream> #include <string> #include <functional> int main() { std::string s = "Stand back! I've got jimmies!"; std::cout << std::hash<std::string>{}(s) << '\n'; }
可能的输出:
3544599705012401047
参阅
(C++11) |
散列函数对象 (类模板) |