c/c++:生成时间string

File : time2string.cpp
Type : c/c++
Brief : convert time to string


// 将时间格式化成自己想要的字符串
std::time_t tt = std::time(nullptr);
std::tm     *tl = std::localtime(&tt);
char        str_time[100];
std::strftime(str_time, 100, "%Y%m%d-%H.%M.%S", tl);
file_name = std::string(str_time);

转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 [ yehuohan@gmail.com ]

文章标题:c/c++:生成时间string

本文作者:Y

发布时间:2017-08-09, 13:05:30

最后更新:2019-05-21, 20:06:11

原始链接:http://yehuohan.github.io/2017/08/09/Gist/c&c++/time-as-name-string/

版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。