Cocos[3.2]番外篇――获取本地时间

前端之家收集整理的这篇文章主要介绍了Cocos[3.2]番外篇――获取本地时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

获取本地时间戳:

//
//获取时间戳
intgetTimeStamp()
{
timevaltm;
gettimeofday(&tm,NULL);
returntm.tv_sec;//单位:秒
//returntm.tv_usec;//单位:毫秒
}
//


获取本地时间:

//
{//获取本地时间
time_tt=time(NULL);
tm*lt=localtime(&t);

intyear=lt->tm_year+1900;//相对1900年的过去的年数
intmonth=lt->tm_mon+1;//1月份:为0

intyday=lt->tm_yday;//年第几天:从1开始
intmday=lt->tm_mday;//月第几天:从1开始
intwday=lt->tm_wday;//周第几天:从1开始

inthh=lt->tm_hour;//时
intmm=lt->tm_min;//分
intss=lt->tm_sec;//秒

printf("%d%d\n",year,month);
printf("%d%d%d\n",yday,mday,wday);
printf("%d%d%d\n",hh,mm,ss);
}
//
原文链接:https://www.f2er.com/cocos2dx/343403.html

猜你在找的Cocos2d-x相关文章