CppDS.com

C++ 98 11 14 17 20 手册

std::chrono::year_month_weekday::year, std::chrono::year_month_weekday::month, std::chrono::year_month_weekday::weekday, std::chrono::year_month_weekday::index, std::chrono::year_month_weekday::weekday_indexed

来自cppreference.com
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
日期和时间工具
(C++11)
(C++11)
当天时刻
(C++20)



(C++20)(C++20)(C++20)(C++20)
时钟
(C++20)
                                             
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
日历
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
时区
(C++20)
(C++20)
(C++20)
(C++20)
C 风格日期和时间
 
 
constexpr std::chrono::year year() const noexcept;
(1) (C++20 起)
constexpr std::chrono::month month() const noexcept;
(2) (C++20 起)
constexpr std::chrono::weekday weekday() const noexcept;
(3) (C++20 起)
constexpr unsigned index() const noexcept;
(4) (C++20 起)
constexpr std::chrono::weekday_indexed weekday_indexed() const noexcept;
(5) (C++20 起)

返回存储于此 year_month_weekday 对象中的域的值。

返回值

1) 返回存储的 std::chrono::year 值。
2) 返回存储的 std::chrono::month 值。
3) 返回存储的 std::chrono::weekday 值。
4) 返回存储的星期之日下标。
5) weekday()[index()]
关闭