命名空间
变体
操作

std::chrono::month_weekday::month, std::chrono::month_weekday::weekday_indexed

来自 cppreference.com
 
 
工具库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序工具
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
 
constexpr std::chrono::month month() const noexcept;
(1) (自 C++20 起)
constexpr std::chrono::weekday_indexed weekday_indexed() const noexcept;
(2) (自 C++20 起)

检索存储在 *this 中的 monthweekday_indexed 对象的副本。

[编辑] 返回值

1) 存储在 *this 中的 std::chrono::month 对象的副本。
2) 存储在 *this 中的 std::chrono::weekday_indexed 对象的副本。

[编辑] 示例

#include <chrono>
#include <iostream>
 
int main()
{
    std::cout << std::boolalpha;
 
    auto mwdi{std::chrono::March/std::chrono::Friday[1]}; // 1st Friday in a March
    std::cout << (std::chrono::year_month_day{mwdi/2024} == 
                  std::chrono::year_month_day{std::chrono::March/1/2024})
                  << ' ';
    auto index = mwdi.weekday_indexed().index();
    auto weekday = mwdi.weekday_indexed().weekday();
    mwdi = {mwdi.month(), weekday[index + 4]}; // 5th Friday in a March
    std::cout << (std::chrono::year_month_day{mwdi/2024} == 
                  std::chrono::year_month_day{std::chrono::March/29/2024})
                  << '\n';
}

输出

true true