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

履歴 編集

function
<chrono>

std::chrono::month_weekday_last::コンストラクタ(C++20)

month_weekday_last() = delete;                           // (1) C++20
constexpr month_weekday_last(
    const chrono::month& m,
    const chrono::weekday_last& wdl) noexcept;           // (2) C++20

month_weekday_last(const month_weekday_last&) = default; // (3) C++20
month_weekday_last(month_weekday_last&&) = default;      // (4) C++20

概要

  • (1) : デフォルトコンストラクタ。定義されない
  • (2) : 月、最終曜日の値をそれぞれ指定して構築する
  • (3) : コピーコンストラクタ
  • (4) : ムーブコンストラクタ

効果

  • (2) : mwdlをメンバ変数として保持する

例外

投げない

#include <cassert>
#include <chrono>

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

int main()
{
  // 月、インデックス付き曜日のカレンダー要素を順に指定して構築
  chrono::month_weekday_last mwdl1{chrono::March, chrono::Sunday[chrono::last]};
  chrono::month_weekday_last mwdl2{chrono::month{3}, chrono::weekday_last{chrono::Sunday}};
  assert(mwdl1 == chrono::March/chrono::Sunday[chrono::last]);
  assert(mwdl2 == chrono::March/chrono::Sunday[chrono::last]);
}

出力

バージョン

言語

  • C++20

処理系