0

Turbo C++ v1.01 でリリースされた time.h の clock_t の影響は、最大 0.0545XX 秒までしか有効ではありません。つまり、より高い精度で実行したいタイミングは、そのライブラリでは不可能です。

time.h 呼び出しの代わりに使用できる、古い TurboC++ で使用できる優れたライブラリまたはメソッドを誰かが知っているかどうか疑問に思っていました。

4

2 に答える 2

2

Is this the ancient Turbo C++ for DOS? I recognise that number as the ~1/18th of a second of the default DOS performance timer.

You can speed up the timer, but you'll have to write an interrupt routine that intercepts that timer and only passes on some of the interrupts. Or you'll get strange behavior from other parts of DOS. I have code for this somewhere which I may be able to dig out.

于 2010-07-23T15:08:42.057 に答える
-1

Windows QueryPerformanceCounter (およびQueryPerformanceFrequency ) を使用します。

于 2010-07-23T15:01:49.420 に答える