std::chrono::month_weekday::month, std::chrono::month_weekday::weekday_indexed
来自cppreference.com
< cpp | chrono | month weekday
constexpr std::chrono::month month() const noexcept; |
(1) | (C++20 起) |
constexpr std::chrono::weekday_indexed weekday_indexed() const noexcept; |
(2) | (C++20 起) |
取得存储于 *this
的 month 和 weekday_indexed 对象的副本。
返回值
1) 存储于
*this
的 std::chrono::month 对象副本。2) 存储于
*this
的 std::chrono::weekday_indexed 对象副本。