std::chrono::weekday::operator[]
来自cppreference.com
constexpr std::chrono::weekday_indexed operator[]( unsigned index ) const noexcept; |
(1) | (C++20 起) |
constexpr std::chrono::weekday_last operator[]( std::chrono::last_spec ) const noexcept; |
(2) | (C++20 起) |
1) 从 *this 和
index
构造 weekday_indexed
。结果表示在某个待指定月份中的第 index
个星期之日。若 index
不在范围 [
0,
7]
中或若 !ok(),则结果中保有的值(底层星期之日和索引)未指定。2) 从 *this 构造
weekday_last
。结果表示某个待指定月份中的最后一个星期之日。返回值
1) std::chrono::weekday_indexed(*this, index)
2) std::chrono::weekday_last(*this)
示例
运行此代码
#include <chrono> #include <iostream> using namespace std::chrono; int main() { constexpr auto second_tuesday_in_October_2019 = year_month_day{Tuesday[2] / October / 2019y}; constexpr auto last_tuesday_in_October_2019 = year_month_day{Tuesday[last] / October / 2019y}; std::cout << second_tuesday_in_October_2019 << '\n' << last_tuesday_in_October_2019 << '\n'; }
可能的输出:
2019-10-08 2019-10-29