std::chrono::month
来自 cppreference.com
定义在头文件 <chrono> 中 |
||
class month; |
(自 C++20 起) | |
inline constexpr std::chrono::month January{1}; |
(自 C++20 起) | |
inline constexpr std::chrono::month February{2}; |
(自 C++20 起) | |
inline constexpr std::chrono::month March{3}; |
(自 C++20 起) | |
inline constexpr std::chrono::month April{4}; |
(自 C++20 起) | |
inline constexpr std::chrono::month May{5}; |
(自 C++20 起) | |
inline constexpr std::chrono::month June{6}; |
(自 C++20 起) | |
inline constexpr std::chrono::month July{7}; |
(自 C++20 起) | |
inline constexpr std::chrono::month August{8}; |
(自 C++20 起) | |
inline constexpr std::chrono::month September{9}; |
(自 C++20 起) | |
inline constexpr std::chrono::month October{10}; |
(自 C++20 起) | |
inline constexpr std::chrono::month November{11}; |
(自 C++20 起) | |
inline constexpr std::chrono::month December{12}; |
(自 C++20 起) | |
类 month
表示一年中的月份。它的正常范围是 [
1,
12]
,但它可以包含 [
0,
255]
中的任何数字。一年十二个月的十二个命名常量在 std::chrono
命名空间中预定义。
month
是一个 TriviallyCopyable StandardLayoutType.
[编辑] 成员函数
构造一个 month (公有成员函数) | |
递增或递减月份 (公有成员函数) | |
添加或减去一定数量的月份 (公有成员函数) | |
检索存储的月份值 (公有成员函数) | |
检查存储的月份值是否在正常范围内 (公有成员函数) |
[编辑] 非成员函数
(C++20) |
比较两个 month 值(函数) |
(C++20) |
对 month 进行算术运算(函数) |
(C++20) |
将 month 输出到流中(函数模板) |
(C++20) |
根据提供的格式从流中解析 month (函数模板) |
[编辑] 辅助类
对month 的格式化支持(类模板特化) | |
对std::chrono::month的哈希支持 (类模板特化) |