C#計算代碼執行時間的方法

來源:互聯網
上載者:User

最近遇到一個模組其執行時間非常短,但是調用頻率非常高。精確計算其運算時間對於提高程式整體效率來說非常重要。

在我剛剛接觸.Net時,也曾經想要測試一下自己寫的程式的已耗用時間,當時我使用的是將兩個DateTime.Now相減的笨方法,呵呵。後來知道使用Environment.TickCount,對於一般的測試來說就足夠了。但是它對於高精度測試就沒什麼辦法,經常是返回個0了事。對於高精度測試我們應當使用QueryPerformanceFrequency函數和QueryPerformanceCounter函數。通過它們可以獲得比Environment.TickCount更高的精確度。實際上Environment.TickCount就是在調用QueryPerformanceFrequency函數和QueryPerformanceCounter函數。

下面是我使用的代碼:

複製代碼 代碼如下:using System;

class Class1
{
[System.Runtime.InteropServices.DllImport ("Kernel32.dll")]
static extern bool QueryPerformanceCounter(ref long count);

[System.Runtime.InteropServices.DllImport ("Kernel32.dll")]
static extern bool QueryPerformanceFrequency(ref long count);

[STAThread]
static void Main(string[] args)
{
long count = 0;
long count1 = 0;
long freq = 0;
double result = 0;

QueryPerformanceFrequency(ref freq);
QueryPerformanceCounter(ref count);

//需要測試的模組

QueryPerformanceCounter(ref count1);
count = count1-count;
result = (double)(count)/(double)freq;

Console.WriteLine("耗時: {0} 秒", result);
Console.ReadLine();
}
}

這樣能夠得到非常精確的結果。但是模組每次啟動並執行時間總會有些誤差,而當計算非常精確的時候,這些已耗用時間的誤差也顯得比較明顯了。為此我對其進行迴圈多次測試使其誤差平均化,通過多次測試的結果來進行執行效率的分析。

複製代碼 代碼如下:using System;

class Class1
{
[System.Runtime.InteropServices.DllImport ("Kernel32.dll")]
static extern bool QueryPerformanceCounter(ref long count);

[System.Runtime.InteropServices.DllImport ("Kernel32.dll")]
static extern bool QueryPerformanceFrequency(ref long count);

[STAThread]
static void Main(string[] args)
{
long count = 0;
long count1 = 0;
long freq = 0;
double result = 0;

QueryPerformanceFrequency(ref freq);
QueryPerformanceCounter(ref count);

//開始的時候沒有這層迴圈,所得資料浮動很大,添加這層迴圈來使得結果更加平均
for (int i=0; i<500; i++)
{
//需要測試的模組
}

QueryPerformanceCounter(ref count1);

count = count1-count;
result = (double)(count)/(double)freq;

Console.WriteLine("耗時: {0} 秒", result);
Console.ReadLine();
}
}

C#中的秒錶 計算程式運行了多長時間 System.Diagnostics.Stopwatch

複製代碼 代碼如下:private void button1_Click(object sender, EventArgs e)
{
Stopwatch myWatch = new Stopwatch();
myWatch.Start();
for (int i = 0; i < 1000; i++)
{
Console.WriteLine("just test" + i);
}
myWatch.Stop();
long myUseTime = myWatch.ElapsedMilliseconds;
MessageBox.Show("執行時間: " + myUseTime.ToString() + " ms");
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.