Stopwatch.Elapsed 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前執行個體所測量的已耗用時間總和。
public:
property TimeSpan Elapsed { TimeSpan get(); };
public TimeSpan Elapsed { get; }
member this.Elapsed : TimeSpan
Public ReadOnly Property Elapsed As TimeSpan
屬性值
表示目前執行個體所測量之已耗用時間總和的唯讀 TimeSpan。
範例
下列範例示範如何使用 Elapsed 屬性來判斷應用程式的運行時間。
using System;
using System.Diagnostics;
using System.Threading;
class Program
{
static void Main(string[] args)
{
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
Thread.Sleep(10000);
stopWatch.Stop();
// Get the elapsed time as a TimeSpan value.
TimeSpan ts = stopWatch.Elapsed;
// Format and display the TimeSpan value.
string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
ts.Hours, ts.Minutes, ts.Seconds,
ts.Milliseconds / 10);
Console.WriteLine("RunTime " + elapsedTime);
}
}
Imports System.Diagnostics
Imports System.Threading
Class Program
Shared Sub Main(ByVal args() As String)
Dim stopWatch As New Stopwatch()
stopWatch.Start()
Thread.Sleep(10000)
stopWatch.Stop()
' Get the elapsed time as a TimeSpan value.
Dim ts As TimeSpan = stopWatch.Elapsed
' Format and display the TimeSpan value.
Dim elapsedTime As String = String.Format("{0:00}:{1:00}:{2:00}.{3:00}", ts.Hours, ts.Minutes, ts.Seconds, ts.Milliseconds / 10)
Console.WriteLine( "RunTime " + elapsedTime)
End Sub
End Class
備註
在典型的 Stopwatch 案例中 Start ,您會呼叫 方法,最後呼叫 Stop 方法,然後使用 屬性檢查經過的時間 Elapsed 。
Elapsed使用 屬性,使用 TimeSpan 方法和屬性擷取經過的時間值。 例如,您可以將傳 TimeSpan 回的實例格式化為文字表示,或將它傳遞至需要參數的另一個 TimeSpan 類別。
您可以在實體執行或停止時Stopwatch查詢屬性Elapsed、 ElapsedMilliseconds與 ElapsedTicks 。 執行 時 Stopwatch ,經過的時間屬性會穩定增加;當實例停止時,它們會維持不變。
根據預設,實例的經過時間值 Stopwatch 等於所有測量時間間隔的總計。 每個呼叫 Start 都會在累計經過的時間開始計算;每個呼叫 Stop 結束目前的間隔度量,並凍結累計耗用的時間值。 Reset使用方法來清除現有Stopwatch實例中累積經過的時間。