[WorldWind学习]18.High-Performance Timer in C#
In some applications exact time measurement methods are very important.
一些应用程序中精确的时间测量是非常重要的。
The often used Windows API method GetTickCount() retrieves the number of milliseconds that have elapsed since the system was started, but the GetTickCount() function only archieve resolutions of 1ms and on the other side they are very imprecise.
常使用WindowApi方法GetTickCount()提取系统启动后使用的毫秒,但是GetTickCount()方法只检索1ms的精度,另一方面他也是非常不精确的
So, for exact time measurement we should find another method.
因此,为了提取精确的时间,我们需要寻找其他的方法。
High resolution timing is supported in Win32 by the QueryPerformanceCounter() and QueryPerformanceFrequency() API methods.
Win32通过QueryPerformanceCounter()和QueryPerformanceFrequency() API支持高精度的时间
This timer functions has much better resolution than the "standard" millisecond-based timer calls, like the GetTickCount() method.
这个时间函数比标准的毫秒级要精确的多
On the other side there is also a little bit overhead when calling this "unmanaged" API methods from C#, but it's better than using the very imprecise GetTickCount() API function.
也有一些开销用非托管的API方法,但是比使用不精确的GetTickCount() API好的多。
The first call, QueryPerformanceCounter(), queries the actual value of the high-resolution performance counter at any point.
The second function, QueryPerformanceFrequency(), will return the number of counts per second that the high-resolution counter performs.
To retrieve the elapsed time of a code section you have to get the actual value of the high-resolution performance counter immediately before and immediately after the section of code to be timed.
The difference of these values would indicate the counts that elapsed while the code executed.
这些值得变化可以指示代码执行花费的时间。
The elapsed time can be computed then, by dividing this difference by the number of counts per second that the high-resolution counter performs (the frequency of the high-resolution timer).
花费时间就可以计算,通过除以高精度时间的频率
duration = (stop - start) / frequency
For more information about QueryPerformanceCounter and QueryPerformanceFrequency read the documentation on MSDN.
http://www.codeproject.com/Articles/2635/High-Performance-Timer-in-C
WW中的类:
1 using System; 2 using System.Runtime.InteropServices; 3 4 namespace WorldWind 5 { 6 public sealed class PerformanceTimer 7 { 8 #region Instance Data 9 10 public static long TicksPerSecond; 11 #endregion 12 13 #region Creation 14 15 /// <summary> 16 /// Static class 17 /// </summary> 18 private PerformanceTimer() 19 { 20 } 21 22 /// <summary> 23 /// Static constructor 24 /// </summary> 25 static PerformanceTimer() 26 { 27 // Read timer frequency 28 long tickFrequency = 0; 29 if (!QueryPerformanceFrequency(ref tickFrequency)) 30 throw new NotSupportedException("The machine doesn't appear to support high resolution timer."); 31 TicksPerSecond = tickFrequency; 32 33 System.Diagnostics.Debug.WriteLine("tickFrequency = " + tickFrequency); 34 } 35 #endregion 36 37 #region High Resolution Timer functions 38 39 [System.Security.SuppressUnmanagedCodeSecurity] 40 [DllImport("kernel32")] 41 private static extern bool QueryPerformanceFrequency(ref long PerformanceFrequency); 42 43 [System.Security.SuppressUnmanagedCodeSecurity] 44 [DllImport("kernel32")] 45 public static extern bool QueryPerformanceCounter(ref long PerformanceCount); 46 47 #endregion 48 } 49 }
备注:C#可以采用下面方案实现 :
Stopwatch 实例可以测量一个时间间隔的运行时间,也可以测量多个时间间隔的总运行时间。
Stopwatch 类为托管代码内与计时有关的性能计数器的操作提供帮助。 具体说来, Frequency 字段和 GetTimestamp 方法可以用于替换非托管 Win32 APIQueryPerformanceFrequency 和 QueryPerformanceCounter。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· Vue3状态管理终极指南:Pinia保姆级教程