python中isleapyear_DateTime.IsLeapYear(Int32) 方法 (System) | Microsoft Docs

返回指定的年份是否为闰年的指示。Returns an indication whether the specified year is a leap year.

public:

static bool IsLeapYear(int year);

public static bool IsLeapYear (int year);

static member IsLeapYear : int -> bool

Public Shared Function IsLeapYear (year As Integer) As Boolean

参数

四位数年份。A 4-digit year.

返回

如果 true 是闰年,则为 year;否则为 false。true if year is a leap year; otherwise, false.

例外

year 小于 1 或大于 9999。year is less than 1 or greater than 9999.

示例

下面的示例使用 IsLeapYear 方法来确定1994和2014之间的年份是闰年。The following example uses the IsLeapYear method to determine which years between 1994 and 2014 are leap years. 该示例还说明了 AddYears 使用方法将年份添加到闰日时的结果。The example also illustrates the result when the AddYears method is used to add a year to a leap day.

using System;

public class IsLeapYear

{

public static void Main()

{

for (int year = 1994; year <= 2014; year++)

{

if (DateTime.IsLeapYear(year))

{

Console.WriteLine("{0} is a leap year.", year);

DateTime leapDay = new DateTime(year, 2, 29);

DateTime nextYear = leapDay.AddYears(1);

Console.WriteLine(" One year from {0} is {1}.",

leapDay.ToString("d"),

nextYear.ToString("d"));

}

}

}

}

// The example produces the following output:

// 1996 is a leap year.

// One year from 2/29/1996 is 2/28/1997.

// 2000 is a leap year.

// One year from 2/29/2000 is 2/28/2001.

// 2004 is a leap year.

// One year from 2/29/2004 is 2/28/2005.

// 2008 is a leap year.

// One year from 2/29/2008 is 2/28/2009.

// 2012 is a leap year.

// One year from 2/29/2012 is 2/28/2013.Module IsLeapYear

Public Sub Main()

For year As Integer = 1994 to 2014

If DateTime.IsLeapYear(year) Then

Console.WriteLine("{0} is a leap year.", year)

Dim leapDay As New Date(year, 2, 29)

Dim nextYear As Date = leapDay.AddYears(1)

Console.WriteLine(" One year from {0} is {1}.", _

leapDay.ToString("d"), _

nextYear.ToString("d"))

End If

Next

End Sub

End Module

' The example displays the following output:

' 1996 is a leap year.

' One year from 2/29/1996 is 2/28/1997.

' 2000 is a leap year.

' One year from 2/29/2000 is 2/28/2001.

' 2004 is a leap year.

' One year from 2/29/2004 is 2/28/2005.

' 2008 is a leap year.

' One year from 2/29/2008 is 2/28/2009.

' 2012 is a leap year.

' One year from 2/29/2012 is 2/28/2013.

注解

year 指定为四位数基数为10的数字;例如,1996。year is specified as a 4-digit base 10 number; for example, 1996.

year 在公历中始终解释为年份。year is always interpreted as a year in the Gregorian calendar. 若要确定某一年份是否为其他日历中的闰年,请调用该日历对象的 IsLeapYear 方法。To determine whether a particular year was a leap year in some other calendar, call that calendar object's IsLeapYear method.

适用于

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值