clock_t
来自cppreference.com
在标头 <time.h> 定义
|
||
typedef /* unspecified */ clock_t; |
||
足以表示进程所用的处理器时间的算术 (C11 前)实数 (C11 起)类型。它拥有实现定义的范围和精度。
示例
运行此代码
#include <stdio.h> #include <time.h> #include <math.h> volatile double sink; int main (void) { clock_t start = clock(); for(size_t i=0; i<3141592; ++i) sink+=sin(i); clock_t end = clock(); double cpu_time_used = ((double) (end - start)) / CLOCKS_PER_SEC; printf("for loop took %f seconds to execute \n", cpu_time_used); }
可能的输出:
for loop took 0.271828 seconds to execute
引用
- C17 标准(ISO/IEC 9899:2018):
- 7.27.1/3 Components of time (第 284 页)
- C11 标准(ISO/IEC 9899:2011):
- 7.27.1/3 Components of time (第 388 页)
- C99 标准(ISO/IEC 9899:1999):
- 7.23.1/3 Components of time (第 338 页)
- C89/C90 标准(ISO/IEC 9899:1990):
- 4.12.1 Components of time
参阅
返回未加工的程序启动时开始经过的处理器时间 (函数) | |
处理器每秒时钟滴答数 (宏常量) |