zoukankan      html  css  js  c++  java
  • 在C#中实现高性能计时[转]

    For performance test, it is very important to measure code execution time. Without measurement, there is no way to tell if we meet performance goal.

    System.Environment.TickCount is not suitable for high resolution timing. Its resolution cannot be less than 500 milliseconds.

    System.Datetime.Now  returns the current time of type DateTime. With start datetime and end datetime, we can get the interval as a value of TimeSpan by (end - start ) . TimeSpan.TotalMilliseconds or TimeSpan.Ticks may be used to read interval. From MSDN, the resolution of System.Datetime.Now  depends on the system timer.

    System Approximate Resolution
    Windows NT 3.5 and later 10 milliseconds
    Windows 98 55 milliseconds

    So it is better but not high resolution at all.


    In .NET framework v1 and v1.1, we have to use P/Invoke to get high resolution reading. The class below is commonly used in performance test measurement. It is querying hardware to get high resolution performance counter. For more information (including what happens if the hardware does not support high resolution performance counter) please check MSDN for QueryPerformanceCounter and QueryPerformanceFrequency.

    public class HighResolutionTimer
    {
        private long start;
        private long stop;
        private long frequency;

        public HighResolutionTimer()
        {
            QueryPerformanceFrequency (ref frequency);
        }

        public void Start ()
        {
            QueryPerformanceCounter (ref start);
        }

        public void Stop ()
        {
            QueryPerformanceCounter (ref stop);
        }

        public float ElapsedTime
        {
            get{
                float elapsed = (((float)(stop - start)) / ((float) frequency));
                return elapsed;
            }
        }

        [System.Runtime.InteropServices.DllImport("KERNEL32.dll", CharSet=System.Runtime.InteropServices.CharSet.Auto)]
        private static extern bool QueryPerformanceCounter( [In, Out] ref long performanceCount);
        [System.Runtime.InteropServices.DllImport("KERNEL32.dll", CharSet=System.Runtime.InteropServices.CharSet.Auto)]
        private static extern bool QueryPerformanceFrequency( [In, Out] ref long frequency);
    }

    To illustrate the use of this class, check the code below.

        HighResolutionTimer timer = new HighResolutionTimer();
        timer.Start();
        //Perf Test
        timer.Stop();
        Console.WriteLine(timer.ElapsedTime);



    分享到:
  • 相关阅读:
    自动化测试随笔4-无法点击底部的完成按钮
    自动化测试随笔3
    自动化测试随笔2
    node.js的Promise库-bluebird示例
    swagger在node.js下的使用
    Angular6基础:在项目中使用less
    Angular最新教程-第三节在谷歌浏览器中调试Angular
    Centos7 设置Mongodb开机启动-自定义服务
    借助 emq 消息服务器搭建微信小程序的mqtt服务器
    linux SFTP用户创建 不允许用户登录,并且连接只允许在制定的目录下进行操作
  • 原文地址:https://www.cnblogs.com/qqflying/p/1072707.html
Copyright © 2011-2022 走看看