Is DateTime.Now the best way to measure a function#39;s performance?(DateTime.Now 是衡量函数性能的最佳方法吗?)
问题描述
我需要找到一个瓶颈,并且需要尽可能准确地测量时间.
I need to find a bottleneck and need to accurately as possible measure time.
以下代码片段是衡量性能的最佳方式吗?
Is the following code snippet the best way to measure the performance?
DateTime startTime = DateTime.Now;
// Some execution process
DateTime endTime = DateTime.Now;
TimeSpan totalTimeTaken = endTime.Subtract(startTime);
推荐答案
不,不是.使用 秒表(在 System.Diagnostics)
No, it's not. Use the Stopwatch (in System.Diagnostics)
Stopwatch sw = Stopwatch.StartNew();
PerformWork();
sw.Stop();
Console.WriteLine("Time taken: {0}ms", sw.Elapsed.TotalMilliseconds);
秒表自动检查是否存在高精度计时器.
Stopwatch automatically checks for the existence of high-precision timers.
值得一提的是,由于必须处理时区,夏令时等.
It is worth mentioning that DateTime.Now often is quite a bit slower than DateTime.UtcNow due to the work that has to be done with timezones, DST and such.
DateTime.UtcNow 通常具有 15 ms 的分辨率.请参阅 John Chapman 的博文,了解 DateTime.现在精确到一个很好的总结.
DateTime.UtcNow typically has a resolution of 15 ms. See John Chapman's blog post about DateTime.Now precision for a great summary.
有趣的琐事:如果您的硬件不支持高频计数器,秒表会退回到 DateTime.UtcNow.您可以通过查看静态字段 Stopwatch.IsHighResolution.
Interesting trivia: The stopwatch falls back on DateTime.UtcNow if your hardware doesn't support a high frequency counter. You can check to see if Stopwatch uses hardware to achieve high precision by looking at the static field Stopwatch.IsHighResolution.
这篇关于DateTime.Now 是衡量函数性能的最佳方法吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:DateTime.Now 是衡量函数性能的最佳方法吗?
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
