std::chrono::weekday_last::weekday_last
來自 cppreference.com
< cpp | chrono | weekday last
constexpr explicit weekday_last( const std::chrono::weekday& wd ) noexcept; |
(C++20 起) | |
構造一個儲存 weekday wd 的 weekday_last
物件。
[編輯] 注意
構造 weekday_last
更方便的方式是使用 weekday
的 operator[],即 wd[std::chrono::last]。
[編輯] 示例
執行此程式碼
#include <chrono> #include <iostream> using namespace std::chrono; int main() { const year_month_day ymd{floor<days>(system_clock::now())}; const weekday_last wdl{Sunday[last]}; // A last Sunday of a month const year_month_day last_sun{ymd.year() / ymd.month() / wdl}; std::cout << "The last Sunday of current month falls on " << (int)last_sun.year() << '/' << (unsigned)last_sun.month() << '/' << (unsigned)last_sun.day() << '\n'; }
可能的輸出
The last Sunday of current month falls on 2021/9/26