HebrewCalendar.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 から 13 の整数。
戻り値
指定した月が閏月である場合は true
、それ以外の場合は false
です。
例外
year
、month
、または era
がこの暦でサポートされている範囲外の値です。
例
次のコード例では、現在の時代の 5 年間のすべての月を呼び出 IsLeapMonth
します。
using namespace System;
using namespace System::Globalization;
int main()
{
// Creates and initializes a HebrewCalendar.
HebrewCalendar^ myCal = gcnew HebrewCalendar;
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 5761; y <= 5765; y++ )
{
Console::Write( " {0}:\t", y );
iMonthsInYear = myCal->GetMonthsInYear( y, HebrewCalendar::CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console::Write( "\t {0}", myCal->IsLeapMonth( y, m, HebrewCalendar::CurrentEra ) );
Console::WriteLine();
}
}
/*
This code produces the following output.
5761: False False False False False False False False False False False False
5762: False False False False False False False False False False False False
5763: False False False False False False True False False False False False False
5764: False False False False False False False False False False False False
5765: False False False False False False True False False False False False False
*/
using System;
using System.Globalization;
public class SamplesHebrewCalendar {
public static void Main() {
// Creates and initializes a HebrewCalendar.
HebrewCalendar myCal = new HebrewCalendar();
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 5761; y <= 5765; y++ ) {
Console.Write( "{0}:\t", y );
iMonthsInYear = myCal.GetMonthsInYear( y, HebrewCalendar.CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console.Write( "\t{0}", myCal.IsLeapMonth( y, m, HebrewCalendar.CurrentEra ) );
Console.WriteLine();
}
}
}
/*
This code produces the following output.
5761: False False False False False False False False False False False False
5762: False False False False False False False False False False False False
5763: False False False False False False True False False False False False False
5764: False False False False False False False False False False False False
5765: False False False False False False True False False False False False False
*/
Imports System.Globalization
Public Class SamplesHebrewCalendar
Public Shared Sub Main()
' Creates and initializes a HebrewCalendar.
Dim myCal As New HebrewCalendar()
' Checks all the months in five years in the current era.
Dim iMonthsInYear As Integer
Dim y As Integer
For y = 5761 To 5765
Console.Write("{0}:" + ControlChars.Tab, y)
iMonthsInYear = myCal.GetMonthsInYear(y, HebrewCalendar.CurrentEra)
Dim m As Integer
For m = 1 To iMonthsInYear
Console.Write(ControlChars.Tab + "{0}", myCal.IsLeapMonth(y, m, HebrewCalendar.CurrentEra))
Next m
Console.WriteLine()
Next y
End Sub
End Class
'This code produces the following output.
'
'5761: False False False False False False False False False False False False
'5762: False False False False False False False False False False False False
'5763: False False False False False False True False False False False False False
'5764: False False False False False False False False False False False False
'5765: False False False False False False True False False False False False False
注釈
このクラスの HebrewCalendar 実装では、ヘブライ語の年 5343 年から 5999 年 (グレゴリオ暦では 1583 年から 2239 年) のみが認識されます。
19 年ごとに、19 年で均等に割り切れる年で終わるサイクルでは、3 年、6 年、8 年、11 年、14 年、17 年、19 年は閏年です。 一般的な年は、ユダヤ人の休日の配置に応じて、353日から355日を持つことができます。 閏年には 383 日から 385 日を指定できます。
閏月は閏年でのみ発生する月全体です。 ヘブライ暦では、Adar Beit は唯一のうるう月です。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET