linux下获取不同精度的时间

linux下获取不同精度的时间的办法

经常需要获取系统时间以作为生成随机数的种子,因此总结了三种获取不同精度的系统时间的方法

time(秒级)

/*
	time_t time(time_t* tloc);
	tloc:
		传出参数,如果不为空的话,返回的时间还会存储在tloc里
*/
#include <time.h>
time(NULL);					//返回当前时间距1970-01-01的秒数

gettimeofday(微秒级)

/*
	int gettimeofday(struct timeval *tv, struct timezone *tz);
	tv:
		传出参数,结构体定义如下:
		struct timeval {
               time_t      tv_sec;     /* seconds */
               suseconds_t tv_usec;    /* microseconds */
           };
	tz:
		timezone,仅获取时间的话为NULL即可
*/
#include <sys/time.h>
struct timeval *tv;
gettimeofday(tv, NULL);

clock_gettime(纳秒级)

/*
	int clock_gettime(clockid_t clk_id, struct timespec* tp);
	clk_id:
	CLOCK_MONOTONIC:从某个时间点开始的偏移时间(不可被人为设置)
	CLOCK_REALTIME:系统实时时间(可以被人为设置)
	更多clk_id介绍参考man手册
	tp:
		传出参数,结构体定义如下:
		struct timespec {
              	time_t   tv_sec;        /* seconds */
               	long     tv_nsec;       /* nanoseconds */
          	 };
*/
#include <time.h>
struct timespec* tp;
clock_gettime(CLOCK_MONOTONIC, tp);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值