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

System.DateUtils 1. DateOf、TimeOf 简单修饰功能

时间:2015-08-26 13:30:53      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

编译版本:Delphi XE7

{ Simple trimming functions } // 简单修饰功能

function DateOf(const AValue: TDateTime): TDateTime; inline; // 获取日期
function TimeOf(const AValue: TDateTime): TDateTime; inline; // 获取时间

 

implementation

 

function DateOf(const AValue: TDateTime): TDateTime;
begin
  Result := Trunc(AValue); // 截取整数部分
end;

 

function TimeOf(const AValue: TDateTime): TDateTime;
begin
  Result := Frac(AValue); // 截取小数部分
end;

 

System.DateUtils 1. DateOf、TimeOf 简单修饰功能

标签:

原文地址:http://www.cnblogs.com/BlackList-Sakura/p/4759895.html

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