System.SysUtils.MonthDays

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

MonthDays: array [Boolean] of TDayTable = ((31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31), (31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31));

C++

extern DELPHI_PACKAGE System::StaticArray<System::StaticArray<System::Word, 12>, 2> MonthDays;

プロパティ

種類 可視性 ソース ユニット
const
variable
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

説明

平年とうるう年の各月の日数を定義します。

MonthDays では TDayTable 値の 2 次元配列を定義します。つまり、12 単語の 2 セットの配列です。1 番目のセットには、平年の各月の日数で、2 番目のセットにはうるう年の月の日数が格納されます。

MonthDays[IsLeapYear(Y), M] を使用して年 'Y'、月 'M' の日数を見つけます。

関連項目