The StopWatch
kelas tidak perlu Disposed
atau Stopped
pada kesalahan. Jadi, kode paling sederhana untuk mengatur waktu beberapa tindakan adalah
public partial class With
{
public static long Benchmark(Action action)
{
var stopwatch = Stopwatch.StartNew();
action();
stopwatch.Stop();
return stopwatch.ElapsedMilliseconds;
}
}
Contoh kode panggilan
public void Execute(Action action)
{
var time = With.Benchmark(action);
log.DebugFormat(“Did action in {0} ms.”, time);
}
Saya tidak suka ide memasukkan iterasi ke dalam StopWatch
kode. Anda selalu dapat membuat metode atau ekstensi lain yang menangani N
pengulangan eksekusi .
public partial class With
{
public static void Iterations(int n, Action action)
{
for(int count = 0; count < n; count++)
action();
}
}
Contoh kode panggilan
public void Execute(Action action, int n)
{
var time = With.Benchmark(With.Iterations(n, action));
log.DebugFormat(“Did action {0} times in {1} ms.”, n, time);
}
Berikut adalah versi metode ekstensi
public static class Extensions
{
public static long Benchmark(this Action action)
{
return With.Benchmark(action);
}
public static Action Iterations(this Action action, int n)
{
return () => With.Iterations(n, action);
}
}
Dan contoh kode panggilan
public void Execute(Action action, int n)
{
var time = action.Iterations(n).Benchmark()
log.DebugFormat(“Did action {0} times in {1} ms.”, n, time);
}
Saya menguji metode statis dan metode ekstensi (menggabungkan iterasi dan benchmark) dan delta waktu eksekusi yang diharapkan dan waktu eksekusi nyata adalah <= 1 ms.