程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> c#計算程序執行時間,計算一段代碼執行所用的時間,測試效率

c#計算程序執行時間,計算一段代碼執行所用的時間,測試效率

編輯:C#基礎知識

 

  1. using System;   
  2. using System.Threading;   
  3. class Class1   
  4. {   
  5.     [System.Runtime.InteropServices.DllImport("Kernel32.dll")]   
  6.     static extern bool QueryPerformanceCounter(ref long count);   
  7.     [System.Runtime.InteropServices.DllImport("Kernel32.dll")]   
  8.     static extern bool QueryPerformanceFrequency(ref long count);   
  9.     [STAThread]   
  10.     static void Main(string[] args)   
  11.     {   
  12.         long count = 0;   
  13.         long count1 = 0;   
  14.         long freq = 0;   
  15.         double result = 0;   
  16.         QueryPerformanceFrequency(ref freq);   
  17.         QueryPerformanceCounter(ref count);   
  18.         //需要測試的模塊   
  19.   
  20.         int heisetoufa;   
  21.         for (heisetoufa = 1; heisetoufa < 10000; heisetoufa++)   
  22.         {   
  23.             Console.WriteLine("第" + heisetoufa + "行");   
  24.             if (heisetoufa == 5000)   
  25.             {   
  26.                 Thread.Sleep(10000);   
  27.             }   
  28.         }   
  29.   
  30.         //需要測試的模塊   
  31.   
  32.         QueryPerformanceCounter(ref count1);   
  33.         count = count1 - count;   
  34.         result = (double)(count) / (double)freq;   
  35.         Console.WriteLine("耗時: {0} 秒", result);   
  36.         Console.ReadLine();   
  37.     }   
  38. }  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved