通过time()函数获取时间戳

Posted 看,未来

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过time()函数获取时间戳相关的知识,希望对你有一定的参考价值。

取走直接用,当个 demo 挺好的。

#include <iostream>
#include <time.h>
#include <unistd.h>
using namespace std;

int main()
{
    string str;
    time_t myt = time(NULL);
    cout << "sizeof(time_t) is: " << sizeof(time_t) << endl;
    cout << "myt is :" << myt << endl;

    sleep(1);

    time_t t;
    time(&t);
    cout << "t is:" << t << endl;

    cout<<t-myt<<endl;

    str = to_string(myt);
    cout<<str<<endl;
    cout<<str.size()<<endl;
}

以上是关于通过time()函数获取时间戳的主要内容,如果未能解决你的问题,请参考以下文章

PHP获取当前时间戳,当前时间及解决时区问题

php 哪个函数可以获取当前时间的毫秒值?在线等

Linux编程:time/gettimeofday获取时间戳

Python之Time模块

在C#中获取如PHP函数time()一样的时间戳

Python之OS模块