文章目录
  1. 1. C++获取时间

C++获取时间


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
time_t now_time;
now_time = time(NULL);
cout<<now_time<<endl;

stringstream ss;
ss << now_time;
string timeStr;
ss >> timeStr;
cout << timeStr<<endl;
return 0;
}

参考资料:

  1. C++ 取得系统当前时间
  2. c/c++日期时间处理与字符串string转换
文章目录
  1. 1. C++获取时间