Calendar.GetLeapMonth 方法
定义
计算指定年份或指定纪元年份的闰月。Calculates the leap month for a specified year, or year and era.
重载
GetLeapMonth(Int32, Int32) |
计算指定纪元年份的闰月。Calculates the leap month for a specified year and era. |
GetLeapMonth(Int32) |
计算指定年份的闰月。Calculates the leap month for a specified year. |
GetLeapMonth(Int32, Int32)
计算指定纪元年份的闰月。Calculates the leap month for a specified year and era.
public:
virtual int GetLeapMonth(int year, int era);
[System.Runtime.InteropServices.ComVisible(false)]
public virtual int GetLeapMonth (int year, int era);
abstract member GetLeapMonth : int * int -> int
override this.GetLeapMonth : int * int -> int
Public Overridable Function GetLeapMonth (year As Integer, era As Integer) As Integer
参数
- year
- Int32
年份。A year.
- era
- Int32
纪元。An era.
返回
一个正整数,用于表示指定纪元年份中的闰月。A positive integer that indicates the leap month in the specified year and era.
或-or-
如果此日历不支持闰月,或者 year
和 era
参数未指定闰年,则为零。Zero if this calendar does not support a leap month or if the year
and era
parameters do not specify a leap year.
- 属性
注解
在支持闰月的概念的日历中, 闰月可以在特定月份之后或在一年中的任何月份之后发生。In a calendar that supports the notion of a leap month, the leap month can occur either after a particular month or after any month in a year. 例如, GetMonth(DateTime)方法返回1到13之间的一个数字, 用于指示与指定日期关联的月份。For example, the GetMonth(DateTime) method returns a number between 1 and 13 that indicates the month associated with a specified date. 如果一年的第八个月和第九个月之间有一个闰月GetMonth(DateTime) , 则该方法将为第八个月返回 8, 为第八个月返回 9, 在第9个月返回10个月。If there is a leap month between the eighth and ninth months of the year, the GetMonth(DateTime) method returns 8 for the eighth month, 9 for the leap eighth month, and 10 for the ninth month.
GetLeapMonth(Int32)
计算指定年份的闰月。Calculates the leap month for a specified year.
public:
virtual int GetLeapMonth(int year);
[System.Runtime.InteropServices.ComVisible(false)]
public virtual int GetLeapMonth (int year);
abstract member GetLeapMonth : int -> int
override this.GetLeapMonth : int -> int
Public Overridable Function GetLeapMonth (year As Integer) As Integer
参数
- year
- Int32
年份。A year.
返回
一个正整数,表示指定年份中的闰月。A positive integer that indicates the leap month in the specified year.
或-or-
如果此日历不支持闰月或 year
参数不表示闰年,则为零。Zero if this calendar does not support a leap month or if the year
parameter does not represent a leap year.
- 属性
注解
在支持闰月的概念的日历中, 闰月可以在特定月份之后或在一年中的任何月份之后发生。In a calendar that supports the notion of a leap month, the leap month can occur either after a particular month or after any month in a year. 例如, GetMonth(DateTime)方法返回1到13之间的一个数字, 用于指示与指定日期关联的月份。For example, the GetMonth(DateTime) method returns a number between 1 and 13 that indicates the month associated with a specified date. 如果一年的第八个月和第九个月之间有一个闰月GetMonth(DateTime) , 则该方法将为第八个月返回 8, 为第八个月返回 9, 在第9个月返回10个月。If there is a leap month between the eighth and ninth months of the year, the GetMonth(DateTime) method returns 8 for the eighth month, 9 for the leap eighth month, and 10 for the ninth month.