std:: hash <std::chrono::time_point>
From cppreference.net
<
cpp
|
chrono
|
time point
C++
Date and time library
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::chrono::time_point
| Member functions | ||||
|
(C++20)
(C++20)
|
||||
| Non-member functions | ||||
|
(until C++20)
(C++20)
|
||||
|
(C++17)
|
||||
|
(C++17)
|
||||
|
(C++17)
|
||||
| Helper classes | ||||
|
hash
<std::chrono::time_point>
(C++26)
|
|
헤더에 정의됨
<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) |
해싱
지원 for
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)
|
해시 함수 객체
(클래스 템플릿) |