constexpr day& operator++() noexcept; // (1) C++20
constexpr day operator++(int) noexcept; // (2) C++20
概要
day
の値をインクリメントする
- (1) : 前置インクリメント
- (2) : 後置インクリメント
効果
メンバ変数として保持しているunsigned int
型の日を表す値d
があるとして、
- (1) :
++d
- (2) :
++(*this)
戻り値
- (1) :
*this
- (2) : この関数が呼ばれる前の
*this
のコピーを返す
例外
投げない
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
// 前置インクリメント
{
chrono::day d{1};
assert(static_cast<unsigned int>(++d) == 2);
assert(static_cast<unsigned int>(d) == 2);
}
// 後置インクリメント
{
chrono::day d{1};
assert(static_cast<unsigned int>(d++) == 1);
assert(static_cast<unsigned int>(d) == 2);
}
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌