最終更新日時(UTC):
が更新

履歴 編集

function
<chrono>

std::chrono::year_month_day_last::operator local_days(C++20)

constexpr explicit operator local_days() const noexcept; // (1) C++20

概要

year_month_day_lastオブジェクトをローカル時間の日付に、明示的に型変換する。

戻り値

#include <iostream>
#include <chrono>

namespace chrono = std::chrono;
using namespace std::chrono_literals;

int main()
{
  chrono::local_days date {2020y/2/chrono::last};
  std::cout << date << std::endl;
}

出力

2020-02-29 00:00:00

バージョン

言語

  • C++20

処理系

関連項目