2022.7.6 work
c++中如何获取系统时间
1.头文件中因包含include<time.h>
2.第一步:time_t now;(定义一个关于time 的类)
第二步:time(&now);获取系统时间(从1970开始,单位为秒)
另一种 struct tm*p;
p=localtime(&now);
年p->tm_yea(因为p是指针所以要用->访问)
c++中如何获取系统时间
1.头文件中因包含include<time.h>
2.第一步:time_t now;(定义一个关于time 的类)
第二步:time(&now);获取系统时间(从1970开始,单位为秒)
另一种 struct tm*p;
p=localtime(&now);
年p->tm_yea(因为p是指针所以要用->访问)