constexpr chrono::month month() const noexcept; // (1) C++20
概要
月要素を取得する。
戻り値
コンストラクタで設定されて保持している月オブジェクトを返す。
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
chrono::month_weekday_last mwdl = chrono::March/chrono::Sunday[chrono::last];
chrono::month m = mwdl.month();
assert(m == chrono::March);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌