std::chrono::weekday_last::weekday
来自 cppreference.com
< cpp | chrono | weekday last
constexpr std::chrono::weekday weekday() const noexcept; |
(自 C++20 起) | |
检索存储在 *this 中的 std::chrono::weekday 对象的副本。
[编辑] 返回值
存储在 *this 中的 std::chrono::weekday 对象的副本。
[编辑] 示例
运行此代码
#include <chrono> #include <iostream> using namespace std::chrono; int main() { std::cout << std::boolalpha; auto wdl{Tuesday[last]}; // Last Tuesday of a month std::cout << (year_month_day{wdl/10/2019} == year_month_day{October/29/2019}) << ' '; wdl = {(wdl.weekday() + days(2))[last]}; // Last Tuesday is now last Thursday std::cout << (year_month_day{wdl/10/2019} == year_month_day{October/31/2019}) << '\n'; }
输出
true true