关于从Date()中分别取年月日的问题(50分)

  • 主题发起人 主题发起人 nfy
  • 开始时间 开始时间
N

nfy

Unregistered / Unconfirmed
GUEST, unregistred user!
delphi有从Date()中取年月日的函数吗,我原来用foxpro就有,在delphi中我怎么没找到呢?
 
uses DateUtils:
YearOfDate(Date);
MonthOfDate(Date);
DayOfDate(Date);
 
在DELPHI中是存在这个函数的,在帮助文件中也有实例
procedure DecodeDate(Date: TDateTime;
var Year, Month, Day: Word);
 
多谢啊,我注意到
 
FormatDateTime('yyyy',Date);
FormatDateTime('mm',Date);
FormatDateTime('dd',Date);
 
另问一句,他们的返回值是数值型还是字符型的?
 
DecodeDate(Date, Year, Month, Day);
其中,Year, Month, Day为 Word形变量。
 
太不够意思了,我给你的也是正确答案了,竟然一份都不给我,至少也浪费了我几分钟宝贵的时间,
如果都像你这样,谁还愿意给你回答问题,
 
对不起啊 jack_kch 是因为你回答时我在结束此问题所以 不好意思啊
 
后退
顶部