#includesys/time.h/*struct timeval{__time_t tv_sec; Seconds. 秒位部分__suseconds_t tv_usec; Microseconds. 微秒位部分};*/void fn(){struct timeval now;gettimeofday(now, NULL); //获取从1970年1...
#include<sys/time.h>
/*
struct timeval
{
__time_t tv_sec; Seconds. 秒位部分
__suseconds_t tv_usec; Microseconds. 微秒位部分
};
*/
void fn(){
struct timeval now;
gettimeofday(&now, NULL); //获取从1970年1月1日到现在的时间
cout<<"当前的时间是"<<(long)now.tv_sec*1000 + (long)now.tv_usec/1000<<"毫秒"<<endl;
}
沃梦达教程
本文标题为:c/c++ linux下获取时间
基础教程推荐
猜你喜欢
- 如何C++使用模板特化功能 2023-03-05
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- C语言基础全局变量与局部变量教程详解 2022-12-31
- C++详细实现完整图书管理功能 2023-04-04
- C利用语言实现数据结构之队列 2022-11-22
- C语言 structural body结构体详解用法 2022-12-06
- C/C++编程中const的使用详解 2023-03-26
- 详解c# Emit技术 2023-03-25
- 一文带你了解C++中的字符替换方法 2023-07-20
- C++中的atoi 函数简介 2023-01-05