KoreanCalendar.IsLeapMonth(Int32, Int32, Int32) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menentukan apakah bulan yang ditentukan dalam tahun yang ditentukan di era yang ditentukan adalah bulan kampung.
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
Parameter
- year
- Int32
Bilangan bulat yang mewakili tahun.
- month
- Int32
Bilangan bulat dari 1 hingga 12 yang mewakili bulan tersebut.
- era
- Int32
Bilangan bulat yang mewakili era.
Mengembalikan
Metode ini selalu mengembalikan false
, kecuali ditimpa oleh kelas turunan.
Pengecualian
year
berada di luar rentang yang didukung oleh kalender.
-atau-
month
berada di luar rentang yang didukung oleh kalender.
-atau-
era
berada di luar rentang yang didukung oleh kalender.
Contoh
Contoh berikut memanggil IsLeapMonth semua bulan dalam lima tahun di era saat ini.
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
Keterangan
Lompat tahun di kalender Korea sesuai dengan tahun kampung yang sama di kalender Gregorian. Tahun kabut dalam kalender Gregorian didefinisikan sebagai tahun Gregorian yang dapat dibagi secara merata oleh empat, kecuali jika dapat dibagi dengan 100. Namun, tahun Gregorian yang terbagi oleh 400 adalah tahun kampung. Tahun umum memiliki 365 hari dan tahun kaap memiliki 366 hari.
Bulan kampung adalah sebulan penuh yang hanya terjadi pada tahun kampung. Kalender Korea tidak memiliki bulan kampung.