C#计算一段程序运行时间的三种方法

第一种方法利用System.DateTime.Now:

1
2
3
4
5
6
7
8
9
10
static void SubTest()
{
  DateTime beforDT = System.DateTime.Now;
 
  //耗时巨大的代码
 
  DateTime afterDT = System.DateTime.Now;
  TimeSpan ts = afterDT.Subtract(beforDT);
  Console.WriteLine("DateTime总共花费{0}ms.", ts.TotalMilliseconds);
}

第二种用Stopwatch类(System.Diagnostics):

1
2
3
4
5
6
7
8
9
10
11
static void SubTest()
{
  Stopwatch sw = new Stopwatch();
  sw.Start();
 
  //耗时巨大的代码
 
  sw.Stop();
  TimeSpan ts2 = sw.Elapsed;
  Console.WriteLine("Stopwatch总共花费{0}ms.", ts2.TotalMilliseconds);
}

第三种用API实现:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[System.Runtime.InteropServices.DllImport("Kernel32.dll")]
static extern bool QueryPerformanceCounter(ref long count);
[System.Runtime.InteropServices.DllImport("Kernel32.dll")]
static extern bool QueryPerformanceFrequency(ref long count);
static void SubTest()
{
  long count = 0;
  long count1 = 0;
  long freq = 0;
  double result = 0;
  QueryPerformanceFrequency(ref freq);
  QueryPerformanceCounter(ref count);
 
  //耗时巨大的代码
 
  QueryPerformanceCounter(ref count1);
  count = count1 - count;
  result = (double)(count) / (double)freq;
  Console.WriteLine("QueryPerformanceCounter耗时: {0} 秒", result);
}

也可以使用委托对其进行封装,方便调用:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// <summary>
   /// 计算时间
   /// </summary>
   /// <param name="function">要被执行的代码</param>
   /// <returns>执行这一段代码耗时,单位:毫秒</returns>
   public static string Stopwatch(Action function)
   {
       System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
       sw.Start();
 
       //开始执行业务代码
       function();
 
       sw.Stop();
       TimeSpan timeSpan = sw.Elapsed;
 
       return (timeSpan.TotalMilliseconds) + "ms";
   }

  

posted @   大师兄丶  阅读(12292)  评论(0编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
点击右上角即可分享
微信分享提示