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 ]