zoukankan      html  css  js  c++  java
  • [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

  • 相关阅读:
    终于以一个ACMer的名义开通博客了。。
    Struts学习笔记一
    Matplotlib画图
    设计模式第一集——策略模式
    Hibernate学习笔记
    在linux下加python path【转】
    linux学习笔记
    C#3.0初体验
    asp.net中使用ffmpeg
    常用的正则表达式(经典)
  • 原文地址:https://www.cnblogs.com/yhlx125/p/3245258.html
Copyright © 2011-2022 走看看