C++如何获取系统时间
时间: 2024-06-13 10:09:03 浏览: 158
利用c++获取系统时间
以下是两种C++获取系统时间的方法:
1.使用C标准库
```c++
#include <iostream>
#include <ctime>
int main() {
time_t t = time(0);
char tmp[64];
strftime(tmp, sizeof(tmp), "%Y/%m/%d %X %A", localtime(&t));
std::cout << tmp << std::endl;
return 0;
}
```
2.使用ATL库
```c++
#include <atltime.h>
#include <iostream>
int main() {
CTime time = CTime::GetCurrentTime();
std::cout << time.Format("%Y/%m/%d %X %A") << std::endl;
return 0;
}
```
阅读全文