Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C BSD getmicrotime() 函数返回什么?它在 Unix 中返回纪元时间吗?如何将其转换为 Excel 日期格式?
它返回 void,但是它设置了timeval您传递给它的指针。通常是自 Unix 纪元以来经过的微秒。
timeval
至于如何将其转换为 Excel 日期,我不确定。
要转换为 Excel 日期时间,我们需要执行以下操作:
(getmicrotime() / 86400) + 25569
这将在格林威治标准时间给出相应的 Excel 日期