- chrono[meta header]
- std::chrono[meta namespace]
- class[meta id-type]
- cpp20[meta cpp]
namespace std::chrono {
class year_month_day_last;
}
year_month_day_last
は、年、月、月の最終日を表すカレンダー表現のためクラスである。
このクラスは、年、および月に関する演算に対応している。ただし、日に関する演算はできない。
このクラスは等値比較および大小比較ができ、EqualityComparableおよびLessThanComparableの要件を満たす。
このクラスは、トリビアルコピー可能で、かつスタンダードレイアウト型である。
名前 |
説明 |
対応バージョン |
(constructor) |
コンストラクタ |
C++20 |
year_month_day_last& operator=(const year_month_day_last&) = default; year_month_day_last& operator=(year_month_day_last&&) = default; |
代入演算子 |
C++20 |
名前 |
説明 |
対応バージョン |
ok |
値が範囲に収まっているか判定する |
C++20 |
名前 |
説明 |
対応バージョン |
operator== |
等値比較を行う |
C++20 |
bool operator!=(const year_month_day_last&, const year_month_day_last&) noexcept; |
非等値比較を行う (== により使用可能) |
C++20 |
operator<=> |
三方比較を行う |
C++20 |
bool operator<(const year_month_day_last&, const year_month_day_last&) noexcept; |
左辺が右辺より小さいかを判定する (<=> により使用可能) |
C++20 |
bool operator<=(const year_month_day_last&, const year_month_day_last&) noexcept; |
左辺が右辺以下を判定する (<=> により使用可能) |
C++20 |
bool operator>(const year_month_day_last&, const year_month_day_last&) noexcept; |
左辺が右辺より大きいかを判定する (<=> により使用可能) |
C++20 |
bool operator>=(const year_month_day_last&, const year_month_day_last&) noexcept; |
左辺が右辺以上を判定する (<=> により使用可能) |
C++20 |
名前 |
説明 |
対応バージョン |
template <class T> struct hash; |
hash クラスの先行宣言 |
C++26 |
template<> struct hash<chrono::year_month_day_last>; |
hash クラスのyear_month_day_last に対する特殊化 |
C++26 |
#include <iostream>
#include <chrono>
using namespace std::chrono;
int main()
{
// すべて2020年2月の最終日を表す
year_month_day_last date1 = 2020y/2/last;
year_month_day_last date2 = 2020y/February/last;
year_month_day_last date3 = February/last/2020y;
year_month_day_last date4 = February/last/2020;
// 各カレンダー要素のコンストラクタはexplicitなので、
// 指定順は年、月の最終日で決まっているが、int値は指定できない
year_month_day_last date5{2020y, February/last};
std::cout << date5 << std::endl;
// 2020年2月の最終日が何日かを求める
std::cout << date5.day() << std::endl;
// 日単位のシステム時間に変換
sys_days sd{date5};
std::cout << sd << std::endl;
// 年月日に変換
year_month_day ymd{date5};
std::cout << ymd << std::endl;
}
- 2020y[link year/op_y.md]
- February[link month_constants.md]
- last[link last_spec.md]
- sys_days[link sys_time.md]
- date5.day()[link year_month_day_last/day.md]
- year_month_day[link year_month_day.md]
2020/02/last
29
2020-02-29
2020-02-29
- Clang: 8.0 (出力ストリームなし) [mark verified]
- GCC: 11.1 (出力ストリームなし) [mark verified]
- Visual C++: 2019 Update 3 [mark noimpl]