首页 > 代码库 > delphi 时间

delphi 时间

var  time1,time2:TDateTime;begin  time1 := strtodatetime(20:20:05);  time2 := strtodatetime(20:27:05);  ShowMessage(IntToStr(MinutesBetween(time1, time2)));end;

Now 返回当前日期及时间 
Date 返回当前日期 
Time 返回当前时间 
DateTimeToStr 按缺省格式将日期和时间值转换为字符串;特定格式转换可用 FormatDateTime函数 
DateTimeToString 按缺省格式将日期和时间值拷贝到字符串缓冲区 
DateToStr 将TDateTime值的日期部分转为字符串 
TimeToStr 将TDateTime值的时间部分转为字符串 
FormatDateTime 按特定格式将日期和时间值转换为字符串 
StrToDateTime 将带有日期和时间信息的字符串转换为TdateTime类型值,如串有误将引发一个异常 
StrToDate 将带有日期信息的字符串转换为TDateTime类型格式 
StrToTime 将带有时间信息的字符串转换为TDateTime类型格式 
DayOfWeek 根据传递的日期参数计算该日期是一星期中的第几天 
DecodeDate 根据日期值返回年、月、日值 
DecodeTime 根据时间值返回时、分、秒、毫秒值 
EncodeDate 组合年、月、日值为TDateTime类型值 
EncodeTime 组合时、分、秒、毫秒值为TDateTime类型值 

 

YearsBetween();  //年
MonthsBetween(); //月
DaysBetween;     //日
HoursBetwen();   //时
MinutesBetween();//分 
SecondsBetween();//秒

delphi 时间