Namespaces
Variants

std::chrono::year:: is_leap

From cppreference.net
constexpr bool is_leap ( ) const noexcept ;
(C++20 이후)

* this 예측 그레고리력 에서 윤년을 나타내는지 판단합니다.

* this 는 저장된 연도 값이 윤년인 경우를 나타냅니다

  • 4로 나누어 떨어지고 100으로 나누어 떨어지지 않거나;
  • 400으로 나누어 떨어집니다.

반환값

true 만약 * this 가 윤년을 나타내면, 그렇지 않으면 false .

예제

#include <chrono>
#include <iostream>
int main()
{
    using namespace std::chrono_literals;
    for (const std::chrono::year y : {2020y, 2021y, 2000y, 3000y})
    {
        if (const int iy{static_cast<int>(y)}; y.is_leap())
            std::cout << iy << " is a leap year because it is divisible by "
                      << (iy % 400 == 0 ? "400\n" : "4 and not divisible by 100\n");
        else
            std::cout << iy << " is not a leap year\n";
    }
}

출력:

2020 is a leap year because it is divisible by 4 and not divisible by 100
2021 is not a leap year
2000 is a leap year because it is divisible by 400
3000 is not a leap year