C++ 獲取時間

C++ 兩種獲取時間的方式 使用 #include <sys/time.h> 下面的 gettimeofday函數 // 獲取微秒 long GetCurrentMicroseconds(){ timeval time; gettimeofday(&time,nullptr); return (time.tv_sec * 1000000 + time.tv_usec); }// 獲取微秒 long
相關文章
相關標籤/搜索