使用.net Stopwatch class 來分析你的代碼

來源:互聯網
上載者:User

標籤:class   tar   c   int   art   使用   

  當我們在調試,最佳化我們的代碼的時候,想知道某段代碼的真正的執行時間,或者我們懷疑某段代碼,或是某幾段代碼執行比較慢,

需要得到具體的某段代碼的具體執行時間的時候。有一個很好用的類Stopwatch。

Stopwatch 類在 System.Diagnostics命名空間下。可以用來做分析.net代碼塊的基本工具。

例如:
System.Diagnostics.Stopwatch timerObj = new System.Diagnostics.Stopwatch();

timerObj.Start();

Decimal totalDec = 0;
int limit = 1000000;
for (int i = 0; i < limit; ++i)
{
totalDec = totalDec + (Decimal)Math.Sqrt(i);
}
timerObj.Stop();
Console.WriteLine(“Sum of square roots: {0}”,totalDec);
Console.WriteLine(“Milliseconds elapsed : {0}”,timerObj.ElapsedMilliseconds);
Console.WriteLine(“Time elapsed : {0}”, timerObj.Elapsed);

輸出結果:
Sum of square roots : 666666166.45882210823608
Milliseconds elapsed: 282
Time elapsed : 00:00:00.2828692

當你用Stopwatch 來調試你的時候,你可以使用 IDisposable 介面來自動關掉Stopwatch
1.定義一個自訂的Stopwatch類,繼承System.Diagnostics.Stopwatch 和 IDisposable
class AutoStopwatchDemo : System.Diagnostics.Stopwatch, IDisposable
{
public AutoStopwatchDemo()
{
Start();
}
public void Dispose()
{
Stop();
Console.WriteLine(“Elapsed : {0}”, this.Elapsed);
}
}

2. 在你要調試的代碼塊裡面使用
using (new AutoStopwatchDemo())
{
Decimal totalObj2 = 0;
int limitObj2 = 1000000;
for (int i = 0; i < limit2; ++i)
{
totalObj2 = limitObj2 + (Decimal)Math.Sqrt(i);
}
}

此外,Stopwatch除了有Start()和Stop()方法,還有 Reset() 方法,

 

 

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.