实现这个功能的方法有很多,这里我们看一下最常用的一种方式。
获取系统的时间 time.cpp:
#include <iostream> #include <time.h> #include <string> int main() { std::string s; char stime[256] = {0}; time_t now_time; time(&now_time); s = ctime(&now_time); std::cout << s << std::endl; return 0; }
通过编译,g++ -time.cpp -o time ,运行./time,后可以获得系统时间。
然后通过函数 strftime() 可以选择自己想要输出的格式,
如,只是输出时,分,秒:
#include <iostream> #include <time.h> #include <string> int main() { std::string s; char stime[256] = {0}; time_t now_time; time(&now_time); strftime(stime,sizeof(stime),"%H:%M:%S",localtime(&now_time)); s = stime + '