std::chrono::year_month_weekday_last:: operator sys_days, std::chrono::year_month_weekday_last:: operator local_days
From cppreference.net
<
cpp
|
chrono
|
year month weekday last
C++
Date and time library
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::chrono::year_month_weekday_last
| Member functions | ||||
|
year_month_weekday_last::operator sys_days
year_month_weekday_last::operator local_days
|
||||
| Nonmember functions | ||||
| Helper classes | ||||
|
constexpr
operator
std::
chrono
::
sys_days
(
)
const
noexcept
;
|
(1) | (seit C++20) |
|
constexpr
explicit
operator
std::
chrono
::
local_days
(
)
const
noexcept
;
|
(2) | (seit C++20) |
Konvertiert
*
this
zu einem
std::chrono::time_point
, der dasselbe Datum wie dieses
year_month_weekday_last
repräsentiert.
1)
Wenn
ok()
true
ist, gibt ein
sys_days
zurück, das den letzten
weekday()
des
year()
und
month()
repräsentiert. Andernfalls ist der zurückgegebene Wert nicht spezifiziert.
2)
Gleich wie
(1)
, gibt jedoch
local_days
statt
sys_days
zurück. Entspricht
local_days
(
sys_days
(
*
this
)
.
time_since_epoch
(
)
)
.
Beispiel
Diesen Code ausführen
#include <chrono> #include <iostream> using namespace std::chrono; int main() { constexpr auto ymwdl{Tuesday[last]/11/2021}; static_assert(static_cast<local_days>(ymwdl) == static_cast<local_days>(November/30/2021)); // convert from field-based to serial-based to add days constexpr auto sd = static_cast<sys_days>(ymwdl); constexpr year_month_day ymd{sd + days(42)}; std::cout << ymd << '\n'; }
Ausgabe:
2022-01-11