当前位置:网站首页>格式化输出当前时间

格式化输出当前时间

2022-08-10 14:25:00 土豆西瓜大芝麻

 近期在测试跨进程数据共享时需要测试延时情况,在不适用日志系统的情况下,我们要对别多个进程在数据读写的时刻的差值,为此需要记录各操作对应的时刻,使用uint64_4打印timestamp是一种可行的方式,但是看着还是别扭,于是采用亲和人眼的年月日时分秒的方式。

这段代码比较简单,做成一个函数后面使用吧,也供有需要的人使用。编译g++ test.cpp -o test即可。

#include <sys/time.h>
#include <stdio.h>
#include <iostream>
using namespace std;

/**
 * @brief 返回带有yyyy-mm-dd hh:MM:SS.MS格式的当前时刻对应的字符串,如果想使用us级别的,可以修改最后的tv.tv_usec部分
 * 
 * @return std::string 
 */
std::string formatCurrentTimeStr()
{
    std::string sTimestamp;
    char acTimestamp[256];

    struct timeval tv;
    struct tm *tm;

    gettimeofday(&tv, NULL);

    tm = localtime(&tv.tv_sec);

    sprintf(acTimestamp, "%04d-%02d-%02d %02d:%02d:%02d.%03d\
",
            tm->tm_year + 1900,
            tm->tm_mon + 1,
            tm->tm_mday,
            tm->tm_hour,
            tm->tm_min,
            tm->tm_sec,
            (int)(tv.tv_usec / 1000));

    sTimestamp = acTimestamp;

    return sTimestamp;
}

int main(void)
{
    std::cout << formatCurrentTimeStr() << std::endl;
    return 0;
}

原网站

版权声明
本文为[土豆西瓜大芝麻]所创,转载请带上原文链接,感谢
https://blog.csdn.net/jinking01/article/details/126174359