通过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()函数获取时间戳的主要内容,如果未能解决你的问题,请参考以下文章