delphi IsLeapYear、IsInLeapYear - 是否是闰年


本文整理自网络,侵删。

 IsLeapYear、IsInLeapYear - 是否是闰年
SysUtils.IsLeapYear();
DateUtils.IsInLeapYear();
--------------------------------------------------------------------------------


unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
procedure FormCreate(Sender: TObject);
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

uses DateUtils;

procedure TForm1.FormCreate(Sender: TObject);
var
b: Boolean;
begin
b := IsLeapYear(2009); //False
b := IsLeapYear(2012); //True

b := IsInLeapYear(StrToDateTime('2009-1-1')); //False
b := IsInLeapYear(StrToDateTime('2012-1-1')); //True

// ShowMessage(BoolToStr(b, True));
end;

end.

相关阅读 >>

Delphi加密access文件头

Delphi 比较完整的listview1用法

Delphi 暴力保护进程

Delphi调用外部程序并等待其运行结束

Delphi 判断字符串是否包含汉字,正则版和非正则版

Delphi 高权限进程实现拖曳文件操作

Delphi 如何刷新文件图标

Delphi webbrowser控件属性介绍

Delphi实现的sunday字符串搜索算法

Delphi 用 directshow 获取本机的视频摄像设备列表

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...