isLeapYear static method

bool isLeapYear(
  1. int year
)

是否闰年 @param year 年 @return true/false 闰年/非闰年

Implementation

static bool isLeapYear(int year) {
  if (year < 1600) {
    return year % 4 == 0;
  }
  return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}