参考:
这里的获取时间戳和获取当前日期时间是用的不一样的方法
在linux下,头文件<sys/time.h>已经定义好了结构体
struct timeval{
long tv_sec; //秒
long tv_usec; //微秒
};
demo(通过时间戳来生成一个唯一的名字,且按生成的时间顺序排列):
#include <sys/time.h>
#include <stdio.h>
#include <unistd.h>
#include <iostream>
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 :"<<image_n <<endl;
sleep(1);
}
return 0;
}
关于sleep函数的注意点:
<unistd.h>头文件介绍: