欢迎来到天天文库
浏览记录
ID:55339340
大小:33.96 KB
页数:44页
时间:2020-05-11
《Delph 常用日期与时间函数.docx》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Delphi常用日期与时间函数1获取特定的日期与时间本小节将为您介绍Delphi所提供的获取特定日期与时间的函数.这些函数稍后将有详细的范例说明.笔者这里将以列表的方式先说明每一个函数所代表的意义,如图示:函数名称单元文件所代表的意义NowSysUtils此函数可返回现在的日期与时间,其返回值为TDateTime类型DateSysUtils此函数可返回现在的日期,其返回值为TDateTime类型TimeSysUtils此函数可返回现在的时间,其返回值为TDateTime类型TodayDateUtils此函数可返回今天的日期,其返回值为TDateTime类
2、型,此函数的结果与Date函数相同.TomorrowDateUtils此函数可返回昨天的日期,其返回值为TDateTime类型YesterdayDateUtils此函数可返回明天的日期,其返回值为TDateTime类型CurrentyearSysUtils此函数可返回现在所属的年度,其返回值为4的整数.例如:2001HoursperdaySysUtils此常数定义每天的小时数.HoursPerDay=24;MinsperdaySysUtils此常数定义每天的分钟数.MinsPerDay=MinsPerDay*60SecsperdaySysUtils此常数
3、定义每天的秒数.SecPerDay=MinsPerDay*60msecsperdaySysUtils此常数定义每天的毫秒数.MSecsPerDay=SecsperDay*1000Now(返回当前的日期时间)引用单元:SysUtils函数声明:FunctionNow:TDateTime;范例D-1ProcedureTForm1.Button1Click(Sender:TObject);VarMyDateTime:TDateTime;beginMyDateTime:=Now;Showmessage(DateTimeToStr(MyDateTime));end
4、;Date(返回当前的日期)引用单元:SysUtils函数声明:FunctionDay:TDateTime;范例D-2ProcedureTForm1.Button1Click(Sender:TObject);VarMyDateTime:TDateTime;beginMyDateTime:=Date;Showmessage(DateTimeToStr(MyDateTime));end;Time(返回当前的时间)引用单元:SysUtils函数声明:FunctionTime:TDateTime;范例D-3ProcedureTForm1.Button1Click
5、(Sender:TObject);VarMyDateTime:TDateTime;beginMyDateTime:=Time;Showmessage(DateTimeToStr(MyDateTime));end;Today(返回今天的日期)引用单元:DateUtils函数声明:FunctionToday:TDateTime;范例D-4ProcedureTForm1.Button1Click(Sender:TObject);VarMyDateTime:TDateTime;Begin//usesDateUtilsMyDateTime:=Today;Showm
6、essage(DateTimeToStr(MyDateTime));end;Tomorrow(返回明天的日期)引用单元:DateUtils函数声明:FunctionTomorrow:TDateTime;范例D-5ProcedureTForm1.Button1Click(Sender:TObject);VarMyDateTime:TDateTime;Begin//usesDateUtilsMyDateTime:=Tomorrow;//MyDateTime:Now+1;//两者相同Showmessage(DateTimeToStr(MyDateTime));
7、//不包含时间部分end;Yesterday(返回昨天的日期)引用单元:DateUtils函数声明:FunctionYesterday:TDateTime;范例D-6ProcedureTForm1.Button1Click(Sender:TObject);VarMyDateTime:TDateTime;Begin//usesDateUtilsMyDateTime:=Yesterday;//MyDateTime:Now-1;//两者相同Showmessage(DateTimeToStr(MyDateTime));//不包含时间部分end;CurrentYe
8、ar(返回现在所属的年度)引用单元:SysUtils函数声明:FunctionC
此文档下载收益归作者所有