首页 > Windows开发 > 详细

C# 计时函数(毫秒)

时间:2018-04-28 16:19:53      阅读:487      评论:0      收藏:0      [点我收藏+]
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Threading;

class Program
{
    //调用API函数
    [DllImport("kernel32.dll")]
    extern static short QueryPerformanceCounter(ref long x);
    [DllImport("kernel32.dll")]
    extern static short QueryPerformanceFrequency(ref long x);

    static void Main(string[] args)
    {
        // 方法一
        Stopwatch stopWatch = new Stopwatch();
        stopWatch.Start();
        Thread.Sleep(1000);
        stopWatch.Stop();
        long times1 = stopWatch.ElapsedMilliseconds; 
        Console.WriteLine("RunTime " + times1);


        // 方法二
        long stop_Value = 0;
        long start_Value = 0;
        long freq = 0;
        QueryPerformanceFrequency(ref freq);  //获取CPU频率

        QueryPerformanceCounter(ref start_Value); //获取初始前值
        Thread.Sleep(1000);
        QueryPerformanceCounter(ref stop_Value);//获取终止变量值
        var times2 = (stop_Value - start_Value) / (double)freq * 1000;
        Console.WriteLine("RunTime " + times2);
    }
}

 

C# 计时函数(毫秒)

原文:https://www.cnblogs.com/LicwStack/p/8968361.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!