我们可以用Stopwatch类获得程序的运行时间,在优化代码时,可以用此方法来查看优化前后程序所耗费的时间 //Stopwatch类別在System.Diagnostics命名空间里 Stopwatch sw = new Stopwatch(); long num = 0;sw.Reset(); sw = Stopwatch.StartNew();for (int i = 1; i < 100000000; i++){ num += 1;}sw.Stop();TimeSpan el = sw.E
public class StopWatch { static public int AN_HOUR = 60 * 60 * 1000; static public int A_MINUTE = 60 * 1000; ;PRivate long startTime = -1; private long stopTime = -1; /** ;* 启动秒表 */ public void start() { this.startTime =System.currentTimeMillis(); }
作用: 微软提供的常用于统计时间消耗的类,作为一个固定的API接口供大家使用. 先看代码: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; using System.Threading; namespace StopWatchDemo { class Program { static void Main(string[]
Stopwatch实例可以度量一个间隔的运行时间, 或度量多个间隔内所用时间的总和. 命名空间System.Diagnostics. 简单使用 using System; using System.Diagnostics; namespace demo { class Program { static void Main(string[] args) { var sw = Stopwatch.StartNew(); //创建对象 sw.Start();//开始计时 if (sw.IsRunnin
C#中提供的精准测试程序运行时间的类Stopwatch http://www.cnblogs.com/ret00100/archive/2010/08/06/1793680.html 在需要对程序的执行时间进行精准测试的程序员,不妨使用.Net提供的Stopwatch类 它的命名空间是:System.Diagnostics 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.T