从TTime对象获取小时而不使用DecodeTime方法

时间:2011-08-26 10:15:06

标签: datetime c++builder

是否可以在c ++ builder

中从Time对象中检索小时

不使用解码时间(args),通过计算?

1 个答案:

答案 0 :(得分:0)

HourOf函数返回TDateTime值的当前小时。

// get hour from the current time
int Hour;
Hour = HourOf(Now());

查看DateUtils单元,其中包含许多用于处理日期和时间的有用功能。