Re: [問題] unix下 c++程式 CLOCKS_PER_SEC 與CLK_ …
※ 引述《WalkingIce ( 殺手哥吉拉 13)》之銘言:
: ※ 引述《allanyh (allan)》之銘言:
: : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
: : 感謝W兄的解答,再請教 如果 CLOCKS_PER_SEC=1000000,
: : 那上面這一行會是相當把clock數換算成於秒數嗎??
: : 非常感謝
: 就像這一段的解釋, CLOCKS_PER_SEC 沒有給你甚麼訊息。
: 你要除以 CLK_TCK 就會得到秒數了
不好意思,這樣我又有點迷糊了,因為我的程式不可能跑100秒啊,不到一秒鐘就run出來了
到底哪個才是把clock換算成秒數
void main()
{
clock_t start, finish;
double duration1,duration2;
start = clock();
...
...
finish = clock();
duration1 = (double)(finish - start) / CLOCKS_PER_SEC;
duration2 = (double)(finish - start) / CLK_TCK;
printf("duration1:[%3f], duration2:[%3f]\n",duration1,duration2);
}
跑出來結果會不同?? duration1:[0.01], duration2:[100],差了快10^4了
我的機器上time.h的 CLOCKS_PER_SEC跟CLK_TCK為
#define CLOCKS_PER_SEC 1000000
#ifndef CLK_TCK
extern long _sysconf(int); /* System Private interface to sysconf() */
#define CLK_TCK ((clock_t) _sysconf(3)) /* clock ticks per second */
/* 3 is _SC_CLK_TCK */
#endif
可以幫我解答這個問題嗎?非常感謝!!!
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 218.169.235.55
討論串 (同標題文章)
C_and_CPP 近期熱門文章
PTT數位生活區 即時熱門文章