这篇文章主要介绍“c++ vs中如何操作时间”,在日常操作中,相信很多人在c++ vs中如何操作时间问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”c++ vs中如何操作时间”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
代码如下:
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
const time_t now = time(NULL);
cout << "时间戳:" << now << endl;
struct tm systime;
localtime_s(&systime, &now);
// 输出 tm 结构的各个组成部分
cout << "年: " << 1900 + systime.tm_year << endl;
cout << "月: " << 1 + systime.tm_mon << endl;
cout << "日: " << systime.tm_mday << endl;
cout << "时间: " << systime.tm_hour << ":" << systime.tm_min << ":" << systime.tm_sec << endl;
}
结果:
Hello World!
时间戳:1649294557
年: 2022
月: 4
日: 7
时间: 9:22:37