DaysInMonth - C++ Builder

C++ Builder 参考手册 ➙ System::Dateutils ➙ DaysInMonth


这个日期所在的月份一共有多少天

头文件:#include
命名空间:System::Dateutils
函数原型:

System::Word __fastcall DaysInMonth(const System::TDateTime AValue);

参数:

  • AValue:日期时间;

返回值:

  • 参数 AValue 所在的月份有几天,28 - 31;
    • 大月:1、3、5、7、8、10、12 月 31 天;
    • 小月:4、6、9、11 月 30 天;
    • 2 月:平年 2 月 28 天,闰年 2 月 29 天;
  • 函数 DaysInMonth 和 DaysInAMonth 比较:
    • DaysInMonth 参数是日期时间类型变量;
    • DaysInAMonth 参数是整数型变量:年、月;
    这两个函数的年、月相同,返回值就相同。

相关:

  • System::Dateutils::IsInLeapYear
  • System::Dateutils::DaysInYear
  • System::Dateutils::DaysInAYear
  • System::Dateutils::DaysInMonth
  • System::Dateutils::DaysInAMonth
  • System::Dateutils::WeeksInYear
  • System::Dateutils::WeeksInAYear
  • System::Dateutils
  • System::Sysutils::IsLeapYear
  • System::Sysutils

C++ Builder 参考手册 ➙ System::Dateutils ➙ DaysInMonth

你可能感兴趣的:(DaysInMonth - C++ Builder)