ctime
概述
ctime是由C語言的time.h沿用到C++的,也沒什麼好說的,開始使用吧! ##
取得現在的時間 time_t time (time_t*
timer); 這個函式會從 1970 年 1 月 1 日 00:00 UTC
起計算到使用者使用的現在,來看花使用: 1
2
3
4
5
6
7
8
9
using namespace std;
int main(){
time_t a = time(NULL);
cout << a << endl;
return 0;
}1
2
3
4
5
6
7
8
9
10
11
12
using namespace std;
int main(){
time_t a = time(NULL);
cout << a << endl;//output:1623746252
char *b = ctime(&a);
cout << b << endl;//output:Tue Jun 15 16:37:32 2021
return 0;
}1
2
3
4
5
6
7
8
9
10
using namespace std;
int main(){
time_t t = time(NULL);
struct tm * pt = localtime(&t);
cout << pt->tm_year+1900 << "/" << pt->tm_mon + 1 << "/" << pt->tm_mday <<endl;
return 0;
}