Delphi 当前日期的加减运算


本文整理自网络,侵删。

 
在DateUtils(d7)里,有如下几个现成的函数 
function IncYear(const AValue: TDateTime; const ANumberOfYears: Integer = 1): TDateTime; 
// function IncMonth is in SysUtils 
function IncWeek(const AValue: TDateTime; const ANumberOfWeeks: Integer = 1): TDateTime; 
function IncDay(const AValue: TDateTime; const ANumberOfDays: Integer = 1): TDateTime; 
function IncHour(const AValue: TDateTime; const ANumberOfHours: Int64 = 1): TDateTime; 
function IncMinute(const AValue: TDateTime; const ANumberOfMinutes: Int64 = 1): TDateTime; 
function IncSecond(const AValue: TDateTime; const ANumberOfSeconds: Int64 = 1): TDateTime; 
function IncMilliSecond(const AValue: TDateTime; const ANumberOfMilliSeconds: Int64 = 1): TDateTime; 
你把增加的值设置成-1就可以得到前一(或N)年/月/日的日期了
扩冲例子如下: 
var 
  str:string; 
  d:TDateTime; 
begin 
  d:=now;            
  //yyyy-m-d h:n:s:zz 格式化组成:年-月-日 时:分:秒:毫秒 
  ShowMessage('当前时间:'+DateTimeToStr(d)); 

  str:=FormatDateTime('yyyy-mm-dd h:n:s:zz',d-1); //取得当前时间减一天 
  ShowMessage('当前时间减一天:'+str); 

  str:=FormatDateTime('yyyy-mm-dd h:n:s:zz',d-30); //取得当前时间减一月 
  ShowMessage('当前时间减一月:'+str); 

  str:=FormatDateTime('yyyy-mm-dd h:n:s:zz',d-1/24); //取得当前时间减一小时 
  ShowMessage('当前时间减一小时:'+str); 

  str:=FormatDateTime('yyyy-mm-dd h:n:s:zz',d-1/24/60); //取得当前时间减一分钟 
  ShowMessage('当前时间减一分钟:'+str); 

  str:=FormatDateTime('yyyy-mm-dd h:n:s:zz',d-1/24/60/1000/60); //取得当前时间减一毫秒 
  ShowMessage('当前时间减一毫秒:'+str); 
end;

相关阅读 >>

Delphi imagelist-图片(bmp)按名称而不按索引

Delphi xe10 手机内部系统相关操作(手机信息、震动、剪贴板、键盘、电话、拨号)

Delphi 获取公网ip地址

Delphi 数组竟然可以这样定义

Delphi 得到cxgrid筛选后的记录数

使用idhttp抓取百度和google会出错

Delphi 替换其他程序里面的函数为自己的函数

Delphi 获取当前输入法

Delphi richedit 的scrollbar自动向下滚动

Delphi实现ping功能的类

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



打赏

取消

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

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

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

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

评论

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