TaiwanCalendar.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 TaiwanCalendar.
TaiwanCalendar^ myCal = gcnew TaiwanCalendar;
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 90; y <= 94; y++ )
{
Console::Write( " {0}:\t", y );
iMonthsInYear = myCal->GetMonthsInYear( y, TaiwanCalendar::CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console::Write( "\t {0}", myCal->IsLeapMonth( y, m, TaiwanCalendar::CurrentEra ) );
Console::WriteLine();
}
}
/*
This code produces the following output.
90: False False False False False False False False False False False False
91: False False False False False False False False False False False False
92: False False False False False False False False False False False False
93: False False False False False False False False False False False False
94: False False False False False False False False False False False False
*/
using System;
using System.Globalization;
public class SamplesTaiwanCalendar {
public static void Main() {
// Creates and initializes a TaiwanCalendar.
TaiwanCalendar myCal = new TaiwanCalendar();
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 90; y <= 94; y++ ) {
Console.Write( "{0}:\t", y );
iMonthsInYear = myCal.GetMonthsInYear( y, TaiwanCalendar.CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console.Write( "\t{0}", myCal.IsLeapMonth( y, m, TaiwanCalendar.CurrentEra ) );
Console.WriteLine();
}
}
}
/*
This code produces the following output.
90: False False False False False False False False False False False False
91: False False False False False False False False False False False False
92: False False False False False False False False False False False False
93: False False False False False False False False False False False False
94: False False False False False False False False False False False False
*/
Imports System.Globalization
Public Class SamplesTaiwanCalendar
Public Shared Sub Main()
' Creates and initializes a TaiwanCalendar.
Dim myCal As New TaiwanCalendar()
' Checks all the months in five years in the current era.
Dim iMonthsInYear As Integer
Dim y As Integer
For y = 90 To 94
Console.Write("{0}:" + ControlChars.Tab, y)
iMonthsInYear = myCal.GetMonthsInYear(y, TaiwanCalendar.CurrentEra)
Dim m As Integer
For m = 1 To iMonthsInYear
Console.Write(ControlChars.Tab + "{0}", myCal.IsLeapMonth(y, m, TaiwanCalendar.CurrentEra))
Next m
Console.WriteLine()
Next y
End Sub
End Class
'This code produces the following output.
'
'90: False False False False False False False False False False False False
'91: False False False False False False False False False False False False
'92: False False False False False False False False False False False False
'93: False False False False False False False False False False False False
'94: False False False False False False False False False False False False
注解
台湾历中的闰年对应于公历中的同一闰年。 公历中的闰年定义为公历的公历年,除可被 100 整除外,公历年可被 4 均匀地整除。 然而,被400整除的公历年是闰年。 普通年份有 365 天,闰年有 366 天。
闰月是仅在闰年发生的整个月份。 台湾历法没有任何闰月。