添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
Filesystem library (C++17) Regular expressions library (C++11) Concurrency support library (C++11) Execution support library (C++26) Technical specifications Symbols index External libraries
[edit]
std::basic_string
Member functions
Element access
Iterators
Capacity
Modifiers
basic_string::insert
Search
Operations
Constants
Non-member functions
Comparison
(until C++20) (until C++20) (until C++20) (until C++20) (until C++20) (C++20)
Numeric conversions
stoi stol stoll
(C++11) (C++11) (C++11)
(C++11) (C++11)
(C++11) (C++11) (C++11)
(C++11)
(C++11)
Literals
Helper classes
hash <std::basic_string>
(C++11)
Deduction guides (C++17)
Defined in header <string>
template < class A >
struct hash < std:: basic_string < char16_t , std:: char_traits < char16_t > , A >> ;
(since C++11)
template < class A >
struct hash < std:: basic_string < char32_t , std:: char_traits < char32_t > , A >> ;
(since C++11)
template < class A >
struct hash < std:: basic_string < wchar_t , std:: char_traits < wchar_t > , A >> ;
(since C++11)
template < class A >
struct hash < std:: basic_string < char8_t, std:: char_traits < char8_t > , A >> ;
(since C++20)

The template specializations of std::hash for the various string classes allow users to obtain hashes of strings.

These hashes equal the hashes of corresponding std::basic_string_view classes: If S is one of these string types, SV is the corresponding string view type, and s is an object of type S , then std:: hash < S > ( ) ( s ) == std:: hash < SV > ( ) ( SV ( s ) ) . (since C++17)

[ edit ] Example

The following code shows one possible output of a hash function used on a string:

#include <functional>
#include <iostream>
#include <memory_resource>
#include <string>
#include <string_view>
using namespace std::literals;
int main()
    auto sv = "Stand back! I've got jimmies!"sv;
    std::string s(sv);
    std::pmr::string pmrs(sv); // use default allocator
    std::cout << std::hash<std::string_view>{}(sv) << '\n';
    std::cout << std::hash<std::string>{}(s) << '\n';
    std::cout << std::hash<std::pmr::string>{}(pmrs) << '\n';

Possible output:

3544599705012401047
3544599705012401047
3544599705012401047

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards. Applied to Behavior as published Correct behavior LWG 3705 C++11 hash support for std::basic_string with customized allocators was not enabled enabled

[edit] See also

(C++11)
hash function object
(class template) [edit] hash support for string views
(class template specialization) [edit]
Toolbox
  • What links here
  • Related changes
  • Upload file
  • Special pages
  • Printable version
  • Page information
    • In other languages
  • Deutsch
  • Español
  • Français
  • Italiano
  • 日本語
  • Português
  • Русский
  • 中文
  •