测量代码执行时间


120

我想知道一个过程/功能/命令需要花费多少时间来进行测试。

这是我所做的,但是我的方法是错误的,因为如果秒的差为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)

1
您可以在以下问题上看到我的答案:> stackoverflow.com/a/16130243/1507182祝你好运
奥巴马

1
@Soner如果用C#标记它是因为欢迎使用C#代码。
ElektroStudios


2
除了使用秒表的明显原因之外,DateTime.Now由于夏令时和时区问题,您也不应做任何数学运算。请阅读关于这个主题我的博客文章
马特·约翰逊品脱

Answers:


233

更好的方法是使用Stopwatch而不是DateTime差异。

秒表类-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
@ElektroHacker,欢迎您,它易于使用,而且比DateTime更精确:)
Habib

1
请参考github.com/chai-deshpande/LogExec(一个NUGET包也可以在nuget.org/packages/LogExec中获得)。这样做的作用与@ soner-gonul完全相同-但是用法无杂乱无章,并且隐藏了所有样板代码。当您想经常使用它时非常有帮助。它还使用Common.Logging,以便您可以与首选的日志记录提供程序集成。

1
@Habib能帮我了解为什么需要Thread.sleep(500)吗?不能让我跳过睡眠,这会降低效率吗?
Md Sifatul Islam伊斯兰教徒

8
@ Md.SifatulIslam,不需要使用Thread.Sleep,它只是作为示例代码显示延迟....实际上,您应该避免Thread.Sleep在代码中使用任何位置
Habib

59

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


可以用于每行代码的执行时间吗?例如:bindingSource.datasource = db.table; //需要多少时间?
vaheeds

2
@vaheeds当然。只需Stopwatch在每行顶部开始,然后在每行之后停止即可。请记住,Stopwatch.Reset每行之后还需要使用on进行计算。根据您的路线;看看ideone.com/DjR6ba
SonerGönül13年

我对它做了一些小技巧,以使毫秒数消失。这种方式watch.Elapsed.ToString()。Split('。')[0]
Doruk

2
@Doruk是的,您可以执行此操作,也可以使用“ 自定义Timespan格式字符串”之类的方法stopwatch.Elapsed.ToString(@"d\.hh\:mm\:ss"),这对我来说似乎更干净。
SonerGönül16年

1
最佳答案。谢谢!
塔德伊

48

您可以使用此秒表包装器:

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

对于高级方案,可以使用BenchmarkDotNetBenchmark.ItNBench


3
谢谢,到目前为止最好的答案
像素

2
谢谢,正在以集中的方式寻找这样的东西。也已使用ActionFilter完成了此策略。
1616年

13

如果使用Stopwatch类,则可以使用.StartNew()方法将手表重置为0。因此,不必调用.Reset()后跟.Start ()。可能派上用场。


4

秒表就是为此目的而设计的,它是衡量.NET中时间执行的最佳方法之一。

var watch = System.Diagnostics.Stopwatch.StartNew();
/* the code that you want to measure comes here */
watch.Stop();
var elapsedMs = watch.ElapsedMilliseconds;

不要使用DateTimes来衡量.NET中的时间执行。


3

如果您正在寻找关联线程在应用程序内部运行代码所花费的时间。
您可以使用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

注意:如果您使用多线程,则可以分别计算每个线程的时间,并将其加起来以计算总持续时间。


0

我看不到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)

我希望这对遇到此问题的任何人寻找vb.net都有帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.