我们在开发的过程中,很多时候一个功能可能有多个实现方法,为了追求代码的性能,我们往往需要比较各实现方法的运行时间,从而选择性能最好的实现方法。那么怎样计算一段代码(或者说是函数)的运行时间呢,这个就是这篇文章我们要总结的内容。我们主要分以下几点来总结。
在C#代码中计算代码执行时间在Sql Server中计算代码执行时间在C#代码中计算代码执行时间在C#程序中要计算代码段(或方法)的执行时间,我们一般都使用Stopwatch类,我比较了使用+=和使用StringBuilder分别拼接字符串的性能差异,示例代码如下。
1namespaceConsoleapplication52{3classPRogram4{5staticvoidMain(string[] args)6{7//初始化性能计数器8CodeTimer.Initialize();910//定义执行次数11intiteration =100*1000;//10万次1213strings =string.Empty;14CodeTimer.Time("String Concat", iteration, () =>15{16s +="a";17});1819StringBuilder sb =newStringBuilder();20CodeTimer.Time("StringBuilder", iteration, () =>21{22sb.Append("a");23});2425Console.ReadKey();26}27}28}
运行结果如下图。
我这里使用了封装的一个性能计时器,文章后面会附上源代码。
在Sql Server中计算代码执行时间sql server中一般使用GetDate和DateDiff函数来计算sql语句运行的时间,示例代码如下。
1USEPackageFHDB;2GO34--开始时间5DECLARE@t1ASDATETIME;6SELECT@t1=GETDATE();78--运行的sql语句9SELECTTOP1000*FROMdbo.Pkg_PkgOrderMaster;1011--打印结果12PRINTDATEDIFF(millisecond,@t1,GETDATE());
执行结果为293毫秒,如下图。
附:性能计时器的源代码
1usingSystem;2usingSystem.Collections.Generic;3usingSystem.Linq;4usingSystem.Text;5usingSystem.Diagnostics;6usingSystem.Threading;7usingLNFramework.Common.Extends;8usingSystem.Runtime.InteropServices;910namespaceLNFramework.Common.Tools11{12///<summary>13///性能计时器14///</summary>15publicstaticclassCodeTimer16{17///<summary>18///初始化19///</summary>20publicstaticvoidInitialize()21{22//将当前进程及线程的优先级设为最高,减少操作系统在调度上造成的干扰23//然后调用一次Time方法进行预热,以便让Time方法尽快进入状态24Process.GetCurrentProcess().PriorityClass =ProcessPriorityClass.High;25Thread.CurrentThread.Priority =ThreadPriority.Highest;26Time("",1, () =>{ });27}2829///<summary>30///计时31///</summary>32///<param name="name">名称</param>33///<param name="iteration">循环次数</param>34///<param name="action">方法体</param>35publicstaticvoidTime(stringname,intiteration, Action action)36{37if(name.IsNullOrEmpty())return;3839//1.保留当前控制台前景色,并使用黄色输出名称参数40ConsoleColor currentForeColor =Console.ForegroundColor;41Console.ForegroundColor =ConsoleColor.Yellow;42Console.WriteLine(name);4344//2.强制GC进行收集,并记录目前各代已经收集的次数45GC.Collect(GC.MaxGeneration, GCCollectionMode.Forced);46int[] gcCounts =newint[GC.MaxGeneration +1];47for(inti =0; i <= GC.MaxGeneration; i++)48{49gcCounts[i] =GC.CollectionCount(i);50}5152//3.执行代码,记录下消耗的时间及CPU时钟周期53Stopwatch watch =newStopwatch();54watch.Start();55ulongcycleCount =GetCycleCount();56for(inti =0; i < iteration; i++)57{58action();59}60ulongcpuCycles = GetCycleCount() -cycleCount;61watch.Stop();6263//4.恢复控制台默认前景色,并打印出消耗时间及CPU时钟周期64Console.ForegroundColor =currentForeColor;65Console.WriteLine("\tTime Elapsed:\t"+ watch.ElapsedMilliseconds.ToString("N0") +"ms");66Console.WriteLine("\tCPU Cycles:\t"+ cpuCycles.ToString("N0"));6768//5.打印执行过程中各代垃圾收集回收次数69for(inti =0; i <= GC.MaxGeneration; i++)70{71intcount = GC.CollectionCount(i) -gcCounts[i];72Console.WriteLine("\tGen"+ i +": \t\t"+count);73}7475Console.WriteLine();76}7778privatestaticulongGetCycleCount()79{80ulongcycleCount =0;81QueryThreadCycleTime(GetCurrentThread(),refcycleCount);82returncycleCount;83}8485[DllImport("kernel32.dll")]86[return: MarshalAs(UnmanagedType.Bool)]87staticexternboolQueryThreadCycleTime(IntPtr threadHandle,refulongcycleTime);8889[DllImport("kernel32.dll")]90staticexternIntPtr GetCurrentThread();91}92}
View Code
参考文章:
一个简单的性能计数器:CodeTimer