本文主要是介绍c++ 格式化时间,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
格式化时间
#include <ctime> //加载时间库
#include <iostream>
int main()
{
std::time_t nowtime = std::time(NULL); //获取时间戳
std::cout << "nowtime = " << nowtime << std::endl; //输出nowtime = 1626935009
struct tm * local;
local = std::localtime(&nowtime);
char buf[80];
strftime(buf, 80, "%Y_%m_%d_%H_%M_%S", local); //将时间格式化
std::cout << "strftime= " << buf << std::endl; //输出strftime= 2021_07_22_14_23_29
return 0;
}
这篇关于c++ 格式化时间的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!