码迷,mamicode.com
首页 > 其他好文 > 详细

delphi 时间

时间:2014-08-22 21:01:29      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   ar   div   log   时间   

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 时间

标签:style   blog   color   os   for   ar   div   log   时间   

原文地址:http://www.cnblogs.com/didiwei/p/3930189.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!