C++ get time in milliseconds precision

g++ -g -std=c++11 -I. h1.cpp -o h1 -luuid
#include <iostream>
#include <unistd.h>
#include <ctime>
#include <uuid/uuid.h>
#include <string>
#include <sstream>
#include <fstream>
#include <chrono>
#include <sys/time.h>

std::string getDateTime11();

int main()
{
    while(1)
    {
        cout << getDateTime11() << endl;
        sleep(1);
    }    
}

std::string getDateTime11()
{
    time_t rawtime = time(nullptr);
    struct tm timeinfo = *localtime(&rawtime);
    char *buffer = (char *)malloc(20);

    auto now = std::chrono::system_clock::now();
    auto tt = std::chrono::system_clock::to_time_t(now);
    auto nowTruncated = std::chrono::system_clock::from_time_t(tt);
    auto ms = (now - nowTruncated).count(); 
    strftime(buffer, 20, "%Y%m%d%H%M%S", &timeinfo);
    string str;
    str.append(buffer); 
    str.append(std::to_string(ms).substr(0, 3));
    return str;
}

run ./h1

C++ get time in milliseconds precision

原文链接: https://www.cnblogs.com/Fred1987/p/15762622.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/183284

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月12日 上午10:22
下一篇 2023年2月12日 上午10:22

相关推荐