GregorianCalendar.IsLeapMonth メソッド
指定した月が閏月かどうかを確認します。
オーバーロードの一覧
指定した時代 (年号) の指定した年の指定した月が閏月かどうかを確認します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Overrides Public Function IsLeapMonth(Integer, Integer, Integer) As Boolean
[JScript] public override function IsLeapMonth(int, int, int) : Boolean;
Calendar から継承されます。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Overridable Function IsLeapMonth(Integer, Integer) As Boolean
使用例
[Visual Basic, C#, C++] 現在の時代 (年号) の 5 年間のすべての月の IsLeapMonth を呼び出す例を次に示します。
[Visual Basic, C#, C++] メモ ここでは、IsLeapMonth のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Imports System
Imports System.Globalization
Imports Microsoft.VisualBasic
Public Class SamplesGregorianCalendar
Public Shared Sub Main()
' Creates and initializes a GregorianCalendar.
Dim myCal As New GregorianCalendar()
' Checks all the months in five years in the current era.
Dim iMonthsInYear As Integer
Dim y As Integer
For y = 2001 To 2005
Console.Write("{0}:" + ControlChars.Tab, y)
iMonthsInYear = myCal.GetMonthsInYear(y, GregorianCalendar.CurrentEra)
Dim m As Integer
For m = 1 To iMonthsInYear
Console.Write(ControlChars.Tab + "{0}", myCal.IsLeapMonth(y, m, GregorianCalendar.CurrentEra))
Next m
Console.WriteLine()
Next y
End Sub 'Main
End Class 'SamplesGregorianCalendar
'This code produces the following output.
'
'2001: False False False False False False False False False False False False
'2002: False False False False False False False False False False False False
'2003: False False False False False False False False False False False False
'2004: False False False False False False False False False False False False
'2005: False False False False False False False False False False False False
[C#]
using System;
using System.Globalization;
public class SamplesGregorianCalendar {
public static void Main() {
// Creates and initializes a GregorianCalendar.
GregorianCalendar myCal = new GregorianCalendar();
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 2001; y <= 2005; y++ ) {
Console.Write( "{0}:\t", y );
iMonthsInYear = myCal.GetMonthsInYear( y, GregorianCalendar.CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console.Write( "\t{0}", myCal.IsLeapMonth( y, m, GregorianCalendar.CurrentEra ) );
Console.WriteLine();
}
}
}
/*
This code produces the following output.
2001: False False False False False False False False False False False False
2002: False False False False False False False False False False False False
2003: False False False False False False False False False False False False
2004: False False False False False False False False False False False False
2005: False False False False False False False False False False False False
*/
[C++]
#using <mscorlib.dll>
using namespace System;
using namespace System::Globalization;
int main()
{
// Creates and initializes a GregorianCalendar.
GregorianCalendar* myCal = new GregorianCalendar();
// Checks all the months in five years in the current era.
int iMonthsInYear;
for (int y = 2001; y <= 2005; y++)
{
Console::Write(S" {0}:\t", __box(y));
iMonthsInYear = myCal -> GetMonthsInYear(y, GregorianCalendar::CurrentEra);
for (int m = 1; m <= iMonthsInYear; m++)
Console::Write(S"\t {0}", __box(myCal -> IsLeapMonth(y, m, GregorianCalendar::CurrentEra)));
Console::WriteLine();
}
}
/*
This code produces the following output.
2001: False False False False False False False False False False False False
2002: False False False False False False False False False False False False
2003: False False False False False False False False False False False False
2004: False False False False False False False False False False False False
2005: False False False False False False False False False False False False
*/
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
参照
GregorianCalendar クラス | GregorianCalendar メンバ | System.Globalization 名前空間