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

获取当前时间并格式化

时间:2015-11-19 12:51:24      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

功能和代码都很简单,直接上代码

string getFormatTime(const char* format, const int len)
{
    time_t curtm = time(nullptr);
    struct tm* tm_ptr;
    tm_ptr = localtime(&curtm);
    char *chtm = new char[len+1];
    strftime(chtm, len + 1, format, tm_ptr);
    string str(chtm);
    delete[] chtm;
    return str;
}

示例如下:

getFormatTime("%Y-%m-%d %H:%M:%S", 19);

返回string是个人习惯,毕竟一直做c++开发

获取当前时间并格式化

标签:

原文地址:http://www.cnblogs.com/superbi/p/4977153.html

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