博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c/c++ linux下 获取时间戳
阅读量:5019 次
发布时间:2019-06-12

本文共 675 字,大约阅读时间需要 2 分钟。

参考:

这里的获取时间戳和获取当前日期时间是用的不一样的方法 

 

在linux下,头文件<sys/time.h>已经定义好了结构体

struct timeval{  long tv_sec; //秒  long tv_usec; //微秒 };

demo(通过时间戳来生成一个唯一的名字,且按生成的时间顺序排列):

#include 
#include
#include
#include
using namespace std;int main(){ int i; struct timeval tv; for(i=0; i<4; ++i) { gettimeofday(&tv, NULL); printf("%d\t%d\n",tv.tv_usec,tv.tv_sec); string image_n = std::to_string(tv.tv_sec) + "_" + std::to_string(tv.tv_usec); cout<< "iamge_name :"<
<

 

关于sleep函数的注意点:

<unistd.h>头文件介绍:

 

转载于:https://www.cnblogs.com/exciting/p/11175023.html

你可能感兴趣的文章