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 是衡量函数性能的最佳方法吗?
基础教程推荐
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- WPF 模态进度窗口 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
