JapaneseCalendar.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
를 반환합니다.
예외
year
가 달력에서 지원하는 범위 밖에 있는 경우
또는
month
가 달력에서 지원하는 범위 밖에 있는 경우
또는
era
가 달력에서 지원하는 범위 밖에 있는 경우
예제
다음 예제에서는 현재 시대의 처음 5년 동안의 모든 개월을 호출 IsLeapMonth 합니다.
using namespace System;
using namespace System::Globalization;
int main()
{
// Creates and initializes a JapaneseCalendar.
JapaneseCalendar^ myCal = gcnew JapaneseCalendar;
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 1; y <= 5; y++ )
{
Console::Write( " {0}:\t", y );
iMonthsInYear = myCal->GetMonthsInYear( y, JapaneseCalendar::CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console::Write( "\t {0}", myCal->IsLeapMonth( y, m, JapaneseCalendar::CurrentEra ) );
Console::WriteLine();
}
}
/*
This code produces the following output.
1: False False False False False False False False False False False False
2: False False False False False False False False False False False False
3: False False False False False False False False False False False False
4: False False False False False False False False False False False False
5: False False False False False False False False False False False False
*/
using System;
using System.Globalization;
public class SamplesJapaneseCalendar {
public static void Main() {
// Creates and initializes a JapaneseCalendar.
JapaneseCalendar myCal = new JapaneseCalendar();
// Checks all the months in five years in the current era.
int iMonthsInYear;
for ( int y = 1; y <= 5; y++ ) {
Console.Write( "{0}:\t", y );
iMonthsInYear = myCal.GetMonthsInYear( y, JapaneseCalendar.CurrentEra );
for ( int m = 1; m <= iMonthsInYear; m++ )
Console.Write( "\t{0}", myCal.IsLeapMonth( y, m, JapaneseCalendar.CurrentEra ) );
Console.WriteLine();
}
}
}
/*
This code produces the following output.
1: False False False False False False False False False False False False
2: False False False False False False False False False False False False
3: False False False False False False False False False False False False
4: False False False False False False False False False False False False
5: False False False False False False False False False False False False
*/
Imports System.Globalization
Public Class SamplesJapaneseCalendar
Public Shared Sub Main()
' Creates and initializes a JapaneseCalendar.
Dim myCal As New JapaneseCalendar()
' Checks all the months in five years in the current era.
Dim iMonthsInYear As Integer
Dim y As Integer
For y = 1 To 5
Console.Write("{0}:" + ControlChars.Tab, y)
iMonthsInYear = myCal.GetMonthsInYear(y, JapaneseCalendar.CurrentEra)
Dim m As Integer
For m = 1 To iMonthsInYear
Console.Write(ControlChars.Tab + "{0}", myCal.IsLeapMonth(y, m, JapaneseCalendar.CurrentEra))
Next m
Console.WriteLine()
Next y
End Sub
End Class
'This code produces the following output.
'
'1: False False False False False False False False False False False False
'2: False False False False False False False False False False False False
'3: False False False False False False False False False False False False
'4: False False False False False False False False False False False False
'5: False False False False False False False False False False False False
설명
일본 달력의 윤년은 그레고리오력의 동일한 윤년에 해당합니다. 그레고리오력의 윤년은 100으로 나눌 수 있는 경우를 제외하고 4로 균등하게 나눌 수 있는 그레고리오 연도로 정의됩니다. 그러나 400으로 나눌 수있는 그레고리오 년은 윤년입니다. 평년은 365일, 윤년은 366일입니다.
윤월은 윤년에만 발생하는 전체 월입니다. 일본 달력에는 윤월이 없습니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET