117.info
人生若只如初见

c++获取时间戳的方法有哪些

在C++中获取时间戳的方法通常有以下几种:

  1. 使用标准库中的time()函数来获取当前系统时间的时间戳,返回的是从1970年1月1日0时0分0秒开始到现在的秒数。
#include 
#include 

int main() {
    time_t timestamp = time(nullptr);
    std::cout << "Current timestamp: " << timestamp << std::endl;
    return 0;
}
  1. 使用标准库中的system_clock::now()函数来获取当前系统时间的时间戳,返回的是从1970年1月1日0时0分0秒开始到现在的毫秒数。
#include 
#include 

int main() {
    auto timestamp = std::chrono::system_clock::now().time_since_epoch().count();
    std::cout << "Current timestamp: " << timestamp << std::endl;
    return 0;
}
  1. 使用操作系统提供的API来获取时间戳,例如Windows系统可以使用GetSystemTime()函数,Linux系统可以使用gettimeofday()函数等。
#include 
#include 

int main() {
    SYSTEMTIME st;
    GetSystemTime(&st);
    FILETIME ft;
    SystemTimeToFileTime(&st, &ft);
    ULARGE_INTEGER ul;
    ul.LowPart = ft.dwLowDateTime;
    ul.HighPart = ft.dwHighDateTime;
    time_t timestamp = ul.QuadPart / 10000000ULL - 11644473600ULL;
    std::cout << "Current timestamp: " << timestamp << std::endl;
    return 0;
}

未经允许不得转载 » 本文链接:https://www.117.info/ask/fed4fAzsICAFQAFY.html

推荐文章

  • C++ vector::shrink_to_fit()实例讲解

    vector::shrink_to_fit()是C++标准库中vector容器的一个成员函数,用于将vector的容量调整为与其实际大小相匹配的最小值。该函数可以在删除了一些元素后,将容器...

  • C++ beta(), betaf() and betal()实例讲解

    Sure! Let’s start with the explanation of each function: beta(): This function is used to calculate the beta value in statistics. The beta value is a...

  • C# Graphics.DrawLine()函数实例讲解

    Graphics.DrawLine()函数用于在指定的两个点之间绘制一条直线。
    下面是一个使用Graphics.DrawLine()函数绘制直线的示例:
    using System;
    using S...

  • C++ fprintf()实例讲解

    fprintf() 函数用于将数据写入到文件中。它的原型如下:
    int fprintf(FILE *stream, const char *format, ...) 其中,stream 是指向 FILE 对象的指针,用于...

  • c语言常量定义的规则有哪些

    整数常量:整数常量可以是十进制、八进制、十六进制或二进制格式的数字,例如10、012、0x1A、0b1010等。 浮点常量:浮点常量包括带有小数点的数字,例如3.14、-0...

  • SQL中注释语句的作用是什么

    SQL中的注释语句是为了对SQL语句进行解释和说明,在编写复杂的SQL语句时可以通过注释语句来提高代码的可读性和可维护性。注释语句在执行SQL语句时会被忽略,不会...

  • php indexof函数的作用是什么

    PHP中没有内置的indexOf()函数,但可以使用strpos()函数来实现类似的功能。strpos()函数用于在字符串中查找子字符串,并返回子字符串第一次出现的位置。其作用是...

  • linux静态路由配置的步骤是什么

    在Linux系统中配置静态路由的步骤如下: 打开终端,并以管理员权限登录(可以使用sudo或su命令)。
    使用route或ip route命令查看当前系统的路由表,确认当前...