KoreanCalendar.IsLeapMonth(Int32, Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定纪元中指定年份的指定月份是否为闰月。
public:
override bool IsLeapMonth(int year, int month, int era);
public override bool IsLeapMonth (int year, int month, int era);
override this.IsLeapMonth : int * int * int -> bool
Public Overrides Function IsLeapMonth (year As Integer, month As Integer, era As Integer) As Boolean
参数
- year
- Int32
一个整数,用于表示年份。
- month
- Int32
1 到 12 之间的一个整数,用于表示月份。
- era
- Int32
一个整数,用于表示纪元。
返回
除非被派生类重写,否则此方法始终返回 false
。
例外
示例
以下示例调用 IsLeapMonth 当前时代五年内的所有月份。
using namespace System;
using namespace System::Globalization;
int main()
{
// Creates and initializes a KoreanCalendar.
KoreanCalendar^ myCal = gcnew KoreanCalendar;
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 4334; y <= 4338; y++ )
{
Console::Write( " {0}:\t", y );
iMonthsInYear = myCal->GetMonthsInYear( y, KoreanCalendar::CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console::Write( "\t {0}", myCal->IsLeapMonth( y, m, KoreanCalendar::CurrentEra ) );
Console::WriteLine();
}
}
/*
This code produces the following output.
4334: False False False False False False False False False False False False
4335: False False False False False False False False False False False False
4336: False False False False False False False False False False False False
4337: False False False False False False False False False False False False
4338: False False False False False False False False False False False False
*/
using System;
using System.Globalization;
public class SamplesKoreanCalendar {
public static void Main() {
// Creates and initializes a KoreanCalendar.
KoreanCalendar myCal = new KoreanCalendar();
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 4334; y <= 4338; y++ ) {
Console.Write( "{0}:\t", y );
iMonthsInYear = myCal.GetMonthsInYear( y, KoreanCalendar.CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console.Write( "\t{0}", myCal.IsLeapMonth( y, m, KoreanCalendar.CurrentEra ) );
Console.WriteLine();
}
}
}
/*
This code produces the following output.
4334: False False False False False False False False False False False False
4335: False False False False False False False False False False False False
4336: False False False False False False False False False False False False
4337: False False False False False False False False False False False False
4338: False False False False False False False False False False False False
*/
Imports System.Globalization
Public Class SamplesKoreanCalendar
Public Shared Sub Main()
' Creates and initializes a KoreanCalendar.
Dim myCal As New KoreanCalendar()
' Checks all the months in five years in the current era.
Dim iMonthsInYear As Integer
Dim y As Integer
For y = 4334 To 4338
Console.Write("{0}:" + ControlChars.Tab, y)
iMonthsInYear = myCal.GetMonthsInYear(y, KoreanCalendar.CurrentEra)
Dim m As Integer
For m = 1 To iMonthsInYear
Console.Write(ControlChars.Tab + "{0}", myCal.IsLeapMonth(y, m, KoreanCalendar.CurrentEra))
Next m
Console.WriteLine()
Next y
End Sub
End Class
'This code produces the following output.
'
'4334: False False False False False False False False False False False False
'4335: False False False False False False False False False False False False
'4336: False False False False False False False False False False False False
'4337: False False False False False False False False False False False False
'4338: False False False False False False False False False False False False
注解
朝鲜历中的闰年对应于公历中的同一闰年。 公历中的闰年定义为公历的公历年,除可被 100 整除外,公历年可被 4 均匀地整除。 然而,被400整除的公历年是闰年。 普通年份有 365 天,闰年有 366 天。
闰月是仅在闰年发生的整个月份。 朝鲜历没有任何闰月。