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

获取当前时间(年/月/日/时/分/秒)

时间:2017-03-01 10:44:29      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:localtime   获取   color   blog   return   etc   getc   时间   turn   

struct tm* GetCurTime(time_t inTime)
{
    struct tm* curTime = localtime(&inTime);
    curTime->tm_year += 1900;
    curTime->tm_mon += 1;
    return curTime;
}

 

获取当前时间(年/月/日/时/分/秒)

标签:localtime   获取   color   blog   return   etc   getc   时间   turn   

原文地址:http://www.cnblogs.com/brianyi/p/6483028.html

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