罢了这个功能的秩序有好多,这里咱们看一下最常用的一种表情。
获取系统的时辰 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 + '\0';
std::cout << s << std::endl;
return 0;
}