C/C++ 獲取系統時間距 1970年1月1日00:00:00 的毫秒數

  #include <stdio.h> #include <sys/timeb.h> typedef unsigned long long ulong; ulong currentTimeMillisec(){ struct timeb tb; ftime(&tb); return tb.time * 1000 + tb.millitm; } void main() { printf
相關文章
相關標籤/搜索