linux取得タイムスタンプはミリ秒まで正確で微妙です

364 ワード

 #include     
 #include       //     
 int64_t getCurrentTime()      //           ,      int64_t,long long     
 {    
    struct timeval tv;    
    gettimeofday(&tv,NULL);    //    sys/time.h    
    return tv.tv_sec * 1000 + tv.tv_usec / 1000;    
 }    
     
 int main()    
 {    
     std::cout<