我想知道程序/功能/订单需要多长时间才能完成测试。
这就是我所做的,但我的方法是错误的'因为如果秒的差值为0则无法返回经过的毫秒数:
请注意,睡眠值为500毫秒,因此经过的秒数为0,则无法返回毫秒数。
Dim Execution_Start As System.DateTime = System.DateTime.Now
Threading.Thread.Sleep(500)
Dim Execution_End As System.DateTime = System.DateTime.Now
MsgBox(String.Format("H:{0} M:{1} S:{2} MS:{3}", _
DateDiff(DateInterval.Hour, Execution_Start, Execution_End), _
DateDiff(DateInterval.Minute, Execution_Start, Execution_End), _
DateDiff(DateInterval.Second, Execution_Start, Execution_End), _
DateDiff(DateInterval.Second, Execution_Start, Execution_End) * 60))
有人能告诉我更好的方法吗?也许使用TimeSpan
?
解决方案:
Dim Execution_Start As New Stopwatch
Execution_Start.Start()
Threading.Thread.Sleep(500)
MessageBox.Show("H:" & Execution_Start.Elapsed.Hours & vbNewLine & _
"M:" & Execution_Start.Elapsed.Minutes & vbNewLine & _
"S:" & Execution_Start.Elapsed.Seconds & vbNewLine & _
"MS:" & Execution_Start.Elapsed.Milliseconds & vbNewLine, _
"Code execution time", MessageBoxButtons.OK, MessageBoxIcon.Information)
答案 0 :(得分:196)
更好的方法是使用Stopwatch,而不是DateTime
差异。
Stopwatch Class - Microsoft Docs
提供一组可用于的方法和属性 准确地测量经过的时间。
Stopwatch stopwatch = Stopwatch.StartNew(); //creates and start the instance of Stopwatch
//your sample code
System.Threading.Thread.Sleep(500);
stopwatch.Stop();
Console.WriteLine(stopwatch.ElapsedMilliseconds);
答案 1 :(得分:51)
Stopwatch
衡量时间的流逝。
// Create new stopwatch
Stopwatch stopwatch = new Stopwatch();
// Begin timing
stopwatch.Start();
Threading.Thread.Sleep(500)
// Stop timing
stopwatch.Stop();
Console.WriteLine("Time elapsed: {0}", stopwatch.Elapsed);
这是DEMO
。
答案 2 :(得分:37)
您可以使用此秒表包装:
public class Benchmark : IDisposable
{
private readonly Stopwatch timer = new Stopwatch();
private readonly string benchmarkName;
public Benchmark(string benchmarkName)
{
this.benchmarkName = benchmarkName;
timer.Start();
}
public void Dispose()
{
timer.Stop();
Console.WriteLine($"{benchmarkName} {timer.Elapsed}");
}
}
用法:
using (var bench = new Benchmark($"Insert {n} records:"))
{
... your code here
}
输出:
Insert 10 records: 00:00:00.0617594
对于高级方案,您可以使用Benchmark.It或NBench
答案 3 :(得分:11)
如果你使用秒表类,你可以使用 .StartNew()方法将手表重置为0.所以你不必调用 .Reset()接着是 .Start()。可能派上用场。
答案 4 :(得分:2)
秒表专为此目的而设计,是衡量.NET中时间执行的最佳方法之一。
var watch = System.Diagnostics.Stopwatch.StartNew();
/* the code that you want to measure comes here */
watch.Stop();
var elapsedMs = watch.ElapsedMilliseconds;
不要使用DateTimes来测量.NET中的时间执行。
答案 5 :(得分:1)
如果您要查找关联线程在应用程序中运行代码所花费的时间
您可以使用ProcessThread.UserProcessorTime
命名空间下的System.Diagnostics
属性。
TimeSpan startTime= Process.GetCurrentProcess().Threads[i].UserProcessorTime; // i being your thread number, make it 0 for main
//Write your function here
TimeSpan duration = Process.GetCurrentProcess().Threads[i].UserProcessorTime.Subtract(startTime);
Console.WriteLine($"Time caluclated by CurrentProcess method: {duration.TotalSeconds}"); // This syntax works only with C# 6.0 and above
注意:如果您使用的是多线程,则可以单独计算每个线程的时间,并将其总结以计算总持续时间。
答案 6 :(得分:1)
示例如何使用 VB.NET 中的秒表类。
Dim Stopwatch As New Stopwatch
Stopwatch.Start()
''// Test Code
Stopwatch.Stop()
Console.WriteLine(Stopwatch.Elapsed.ToString)
Stopwatch.Restart()
''// Test Again
Stopwatch.Stop()
Console.WriteLine(Stopwatch.Elapsed.ToString)