StopWatch
ชั้นไม่จำเป็นต้องมีDisposed
หรือStopped
ข้อผิดพลาด ดังนั้นรหัสที่ง่ายที่สุดในเวลาบางการกระทำคือ
public partial class With
{
public static long Benchmark(Action action)
{
var stopwatch = Stopwatch.StartNew();
action();
stopwatch.Stop();
return stopwatch.ElapsedMilliseconds;
}
}
ตัวอย่างรหัสการโทร
public void Execute(Action action)
{
var time = With.Benchmark(action);
log.DebugFormat(“Did action in {0} ms.”, time);
}
ฉันไม่ชอบแนวคิดในการรวมการทำซ้ำลงในStopWatch
โค้ด คุณสามารถสร้างวิธีการหรือส่วนขยายอื่นที่จัดการการดำเนินการN
ซ้ำได้ตลอดเวลา
public partial class With
{
public static void Iterations(int n, Action action)
{
for(int count = 0; count < n; count++)
action();
}
}
ตัวอย่างรหัสการโทร
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);
}
นี่คือเวอร์ชันวิธีการขยาย
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);
}
}
และตัวอย่างรหัสโทร
public void Execute(Action action, int n)
{
var time = action.Iterations(n).Benchmark()
log.DebugFormat(“Did action {0} times in {1} ms.”, n, time);
}
ฉันทดสอบวิธีการแบบคงที่และวิธีการขยาย (รวมการวนซ้ำและการเปรียบเทียบ) และเดลต้าของเวลาดำเนินการที่คาดไว้และเวลาดำเนินการจริงคือ <= 1 มิลลิวินาที