C++20-specifikationen introducerer en familie af chrono::time_point
kaldes local_time
:
// [time.clock.local], local time
struct local_t {};
template<class Duration>
using local_time = time_point<local_t, Duration>;
using local_seconds = local_time<seconds>;
using local_days = local_time<days>;
Disse time_point
s repræsenterer et "tidsstempel uden tidszone".
Der findes en gratis, open source forhåndsvisning af dette C++20-bibliotek her:
https://github.com/HowardHinnant/date
som i øjeblikket er i brug af andre projekter rundt om i verden. Dette bibliotek har et par mindre ændringer fra C++20-specifikationen, såsom at sætte alt i namespace date
i stedet for namespace std::chrono
.
Eksempel på program, der bruger dette bibliotek:
#include "date/date.h"
#include <iostream>
int
main()
{
using namespace date;
using namespace std::chrono;
int y = 2019;
int m = 8;
int d = 28;
int H = 14;
int M = 42;
int S = 16;
int US = 500'000;
local_time<microseconds> lt = local_days{year{y}/m/d} + hours{H} +
minutes{M} + seconds{S} + microseconds{US};
std::cout << lt << '\n';
}
Output:
2019-08-28 14:42:16.500000