基于cocos2d-x 3.2 的时间获取函数

前端之家收集整理的这篇文章主要介绍了基于cocos2d-x 3.2 的时间获取函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

学习需要,在网上搜了不少,发现都是基于2的版本的,给大家贡献一个3的。


std::string DailyDuty::getSystemTime()

{

struct tm *tm;

struct timeval now;

gettimeofday(&now, NULL);

tm = localtime(&now.tv_sec);

int year = tm->tm_year + 1900;

int month = tm->tm_mon + 1;

int day = tm->tm_mday;

int hour=tm->tm_hour;

int min=tm->tm_min;

std::string string = StringUtils::format("%d-%d-%d %d:%d",year,month,day,hour,min);

return string;

}

原文链接:https://www.f2er.com/cocos2dx/346203.html

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