首页
社区
课程
招聘
function mktime()格式怎样用?
发表于: 2005-8-3 16:45 4637

function mktime()格式怎样用?

2005-8-3 16:45
4637
function gmtime() //已推出参数使用
function asctime() //已推出参数使用
function mktime() //求知 参数要求,好像是个 9个DWORD 的时间结构

已知它位都是 'MSVCRT.dll' 的时间函数,请问function mktime()怎么用?

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 494
活跃值: (629)
能力值: ( LV9,RANK:1210 )
在线值:
发帖
回帖
粉丝
2
老兄,MSDN有的

time_t mktime( struct tm *timeptr );

timeptr Field Value
tm_hour Hours since midnight (0 ? 23)
tm_isdst Positive if daylight saving time is in effect; 0 if daylight saving time is not in effect; negative if status of daylight saving time is unknown. The C run-time library assumes the United States’s rules for implementing the calculation of Daylight Saving Time (DST).  
tm_mday Day of month (1 ? 31)
tm_min Minutes after hour (0 ? 59)
tm_mon Month (0 ? 11; January = 0)
tm_sec Seconds after minute (0 ? 59)
tm_wday Day of week (0 ? 6; Sunday = 0)
tm_yday Day of year (0 ? 365; January 1 = 0)
tm_year Year (current year minus 1900)
2005-8-3 17:09
0
雪    币: 383
活跃值: (786)
能力值: ( LV12,RANK:730 )
在线值:
发帖
回帖
粉丝
3
老兄,反应可真快,我不是编程搞开发的...没有MSDN
谢谢你帮忙 翻 “MSDN”
2005-8-3 17:22
0
游客
登录 | 注册 方可回帖
返回
//