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.
任何人都知道,如何获得每秒时钟的实际值?clock()fromtime.h从我的进程开始返回时钟,所以它需要除以CLOCKS_PER_SEC,但这个常数总是有 value 1000000。
clock()
time.h
CLOCKS_PER_SEC
1000000
有一些 POSIX 标准吗?
这就是它在 C 规范中指定的方式。
如果您想测量经过的时间,还有其他(和更好的)功能,gettimeofday例如。
gettimeofday