std::hash<std::chrono::time_point>
來自 cppreference.com
< cpp | chrono | time_point
定義於標頭檔案 <chrono> |
||
template< class Clock, class Duration > struct hash<std::chrono::time_point<Clock, Duration>>; |
(C++26 起) | |
std::hash 對 std::chrono::time_point 的模板特化允許使用者獲取型別為 std::chrono::time_point<Clock, Duration> 的物件的雜湊值。此特化當且僅當 std::hash<Duration> 被啟用時才被啟用。
[編輯] 註解
特性測試宏 | 值 | 標準 | 特性 |
---|---|---|---|
__cpp_lib_chrono |
202306L |
(C++26) | 對 std::chrono 值類的 雜湊 支援 |
示例
執行此程式碼
#include <chrono> #include <cstddef> #include <iostream> #include <string> #include <thread> #include <unordered_map> struct my_system_clock : std::chrono::system_clock { using time_point = std::chrono::time_point<my_system_clock>; static time_point now() noexcept { return time_point{std::chrono::system_clock::now().time_since_epoch()}; } template<class CharT, class Traits> friend auto operator<<(std::basic_ostream<CharT, Traits>& os, const time_point& tp) -> decltype(os) { return os << std::chrono::system_clock::time_point{tp.time_since_epoch()}; } }; using my_system_clock_tp = std::chrono::time_point<my_system_clock>; #if __cpp_lib_chrono < 202306L // custom specialization of std::hash can be injected in namespace std template<> struct std::hash<my_system_clock_tp> { std::size_t operator()(const my_system_clock_tp& d) const noexcept { return d.time_since_epoch().count(); } }; #endif int main() { using namespace std::chrono_literals; std::unordered_map<my_system_clock_tp, std::string> log; for (int i{}; i != 4; ++i) { std::this_thread::sleep_for(100ms); log[my_system_clock::now()] = "event #" + std::to_string(i); } for (auto const& [time, message] : log) std::cout << '[' << time << "], message: " << message << '\n'; }
可能的輸出
[2024-03-22 10:47:14.966238436], message: event #3 [2024-03-22 10:47:14.866096194], message: event #2 [2024-03-22 10:47:14.765965786], message: event #1 [2024-03-22 10:47:14.665817365], message: event #0
[編輯] 參閱
(C++11) |
雜湊函式物件 (類模板) |