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