C#使用記秒錶檢查程式已耗用時間

來源:互聯網
上載者:User
如果你擔憂某些代碼非常耗費時間,可以用StopWatch來檢查這段代碼消耗的時間,如下面的代碼所示

System.Diagnostics.Stopwatch timer = new System.Diagnostics.Stopwatch();timer.Start();Decimal total = 0;int limit = 1000000;for (int i = 0; i < limit; ++i){  total = total + (Decimal)Math.Sqrt(i);}timer.Stop();Console.WriteLine(“Sum of sqrts: {0}”,total);Console.WriteLine(“Elapsed milliseconds: {0}”,timer.ElapsedMilliseconds);Console.WriteLine(“Elapsed time: {0}”, timer.Elapsed);

現在已經有專門的工具來檢測程式的已耗用時間,可以細化到每個方法,比如dotNetPerformance軟體。

以上面的代碼為例子,您需要直接修改原始碼,如果是用來測試程式,則有些不方便。請參考下面的例子。

class AutoStopwatch : System.Diagnostics.Stopwatch, IDisposable{   public AutoStopwatch()   {      Start();   }   public void Dispose()   {     Stop();     Console.WriteLine(“Elapsed: {0}”, this.Elapsed);   }}

藉助於using文法,像下面的代碼所示,可以檢查一段代碼的已耗用時間,並列印在控制台上。

using (new AutoStopwatch()){  Decimal total2 = 0;  int limit2 = 1000000;  for (int i = 0; i < limit2; ++i)  {     total2 = total2 + (Decimal)Math.Sqrt(i);  }}
  • 相關文章

    聯繫我們

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