DateTime.DaysInMonth(Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定年和月中的天数。
public:
static int DaysInMonth(int year, int month);
public static int DaysInMonth (int year, int month);
static member DaysInMonth : int * int -> int
Public Shared Function DaysInMonth (year As Integer, month As Integer) As Integer
参数
- year
- Int32
年。
- month
- Int32
月(介于 1 到 12 之间的一个数字)。
返回
指定 month
中 year
中的天数。
例如,如果 month
等于 2(表示二月),则返回值为 28 或 29,具体取决于 year
是否为闰年。
例外
示例
以下示例演示如何使用 方法确定 DaysInMonth 2001 年 7 月、1998 年 2 月 (非闰年) 和 1996 年 2 月 (闰年) 中的天数。
using namespace System;
int main()
{
const int July = 7;
const int Feb = 2;
int daysInJuly = System::DateTime::DaysInMonth( 2001, July );
Console::WriteLine(daysInJuly);
// daysInFeb gets 28 because the year 1998 was not a leap year.
int daysInFeb = System::DateTime::DaysInMonth( 1998, Feb );
Console::WriteLine(daysInFeb);
// daysInFebLeap gets 29 because the year 1996 was a leap year.
int daysInFebLeap = System::DateTime::DaysInMonth( 1996, Feb );
Console::WriteLine(daysInFebLeap);
}
// The example displays the following output:
// 31
// 28
// 29
using System;
class Example
{
static void Main()
{
const int July = 7;
const int Feb = 2;
int daysInJuly = System.DateTime.DaysInMonth(2001, July);
Console.WriteLine(daysInJuly);
// daysInFeb gets 28 because the year 1998 was not a leap year.
int daysInFeb = System.DateTime.DaysInMonth(1998, Feb);
Console.WriteLine(daysInFeb);
// daysInFebLeap gets 29 because the year 1996 was a leap year.
int daysInFebLeap = System.DateTime.DaysInMonth(1996, Feb);
Console.WriteLine(daysInFebLeap);
}
}
// The example displays the following output:
// 31
// 28
// 29
Class Example
Public Shared Sub Main()
Const July As Integer = 7
Const Feb As Integer = 2
Dim daysInJuly As Integer = System.DateTime.DaysInMonth(2001, July)
Console.WriteLine(daysInJuly)
' daysInFeb gets 28 because the year 1998 was not a leap year.
Dim daysInFeb As Integer = System.DateTime.DaysInMonth(1998, Feb)
Console.WriteLine(daysInFeb)
' daysInFebLeap gets 29 because the year 1996 was a leap year.
Dim daysInFebLeap As Integer = System.DateTime.DaysInMonth(1996, Feb)
Console.WriteLine(daysInFebLeap)
End Sub
End Class
' The example displays the following output:
' 31
' 28
' 29
下面的示例显示在一个整数数组中指定的一年中每个月的天数。
using System;
using System.Globalization;
public class Example
{
public static void Main()
{
int[] years = { 2012, 2014 };
DateTimeFormatInfo dtfi = DateTimeFormatInfo.CurrentInfo;
Console.WriteLine("Days in the Month for the {0} culture " +
"using the {1} calendar\n",
CultureInfo.CurrentCulture.Name,
dtfi.Calendar.GetType().Name.Replace("Calendar", ""));
Console.WriteLine("{0,-10}{1,-15}{2,4}\n", "Year", "Month", "Days");
foreach (var year in years) {
for (int ctr = 0; ctr <= dtfi.MonthNames.Length - 1; ctr++) {
if (String.IsNullOrEmpty(dtfi.MonthNames[ctr]))
continue;
Console.WriteLine("{0,-10}{1,-15}{2,4}", year,
dtfi.MonthNames[ctr],
DateTime.DaysInMonth(year, ctr + 1));
}
Console.WriteLine();
}
}
}
// The example displays the following output:
// Days in the Month for the en-US culture using the Gregorian calendar
//
// Year Month Days
//
// 2012 January 31
// 2012 February 29
// 2012 March 31
// 2012 April 30
// 2012 May 31
// 2012 June 30
// 2012 July 31
// 2012 August 31
// 2012 September 30
// 2012 October 31
// 2012 November 30
// 2012 December 31
//
// 2014 January 31
// 2014 February 28
// 2014 March 31
// 2014 April 30
// 2014 May 31
// 2014 June 30
// 2014 July 31
// 2014 August 31
// 2014 September 30
// 2014 October 31
// 2014 November 30
// 2014 December 31
Imports System.Globalization
Module Example
Public Sub Main()
Dim years() As Integer = { 2012, 2014 }
Dim dtfi As DateTimeFormatInfo = DateTimeFormatInfo.CurrentInfo
Console.WriteLine("Days in the Month for the {0} culture " +
"using the {1} calendar",
CultureInfo.CurrentCulture.Name,
dtfi.Calendar.GetType.Name.Replace("Calendar", ""))
Console.WriteLine()
Console.WriteLine("{0,-10}{1,-15}{2,4}", "Year", "Month", "Days")
Console.WriteLine()
For Each [year] As Integer In years
For ctr As Integer = 0 To dtfi.MonthNames.Length - 1
If String.IsNullOrEmpty(dtfi.MonthNames(ctr)) Then
Continue For
End If
Console.WriteLine("{0,-10}{1,-15}{2,4}", [year],
dtfi.MonthNames(ctr),
DateTime.DaysInMonth([year], ctr + 1))
Next
Console.WriteLine()
Next
End Sub
End Module
' The example displays the following output:
' Days in the Month for the en-US culture using the Gregorian calendar
'
' Year Month Days
'
' 2012 January 31
' 2012 February 29
' 2012 March 31
' 2012 April 30
' 2012 May 31
' 2012 June 30
' 2012 July 31
' 2012 August 31
' 2012 September 30
' 2012 October 31
' 2012 November 30
' 2012 December 31
'
' 2014 January 31
' 2014 February 28
' 2014 March 31
' 2014 April 30
' 2014 May 31
' 2014 June 30
' 2014 July 31
' 2014 August 31
' 2014 September 30
' 2014 October 31
' 2014 November 30
' 2014 December 31
注解
方法始终将 和 解释为公历的月份和年份,即使公历不是当前区域性 DaysInMonth month
year
的当前日历。 若要获取特定日历的指定月份中的天数,请调用该日历的 GetDaysInMonth 方法。