#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;
}
