• C# 计算耗时 计时 统计耗时 看方法用了多久时间


    原文:https://blog.csdn.net/zp19860529/article/details/87862922

            public void test2()
            {
                //原文:https://blog.csdn.net/zp19860529/article/details/87862922
                Stopwatch stopwatch = new Stopwatch();
    
                //第一次计时
                stopwatch.Start();  //启动Stopwatch
                Console.WriteLine("Stopwatch is running:{0}", stopwatch.IsRunning);//获取当前Stopwatch的状态
                System.Threading.Thread.Sleep(2000);//耗时操作
                stopwatch.Stop();  //停止Stopwatch
                Console.WriteLine("Using Elapsed output runTime:{0}", stopwatch.Elapsed.ToString());//这里使用时间差来输出,如:时:分:秒
                Console.WriteLine("Using ElapsedMilliseconds output runTime:{0}", stopwatch.ElapsedMilliseconds);//这里面使用毫秒来输出
                Console.WriteLine("===================================================");
    
                //第二次计时
                stopwatch.Start();
                System.Threading.Thread.Sleep(1000);//耗时操作
                stopwatch.Stop();
                Console.WriteLine("The second RunTime:{0}", stopwatch.ElapsedMilliseconds);//这里面使用毫秒来输出
                Console.WriteLine("===================================================");
    
                //第三次计时(这里使用了Restart)
                stopwatch.Restart();//这里使用Restart来启动计时(会把前面的时间清空)
                System.Threading.Thread.Sleep(1000);//耗时操作
                stopwatch.Stop();
                Console.WriteLine("After Restart, so runTime:{0}", stopwatch.ElapsedMilliseconds);//这里面使用毫秒来输出
                Console.ReadKey();  //等待输入
            }

     运行结果预览:

  • 相关阅读:
    视图和触发器
    45题的难点
    表连接、Tsql基本编程和存储过程
    五种函数、子查询和分页查询
    语句创建数据库表及增删改查
    约束
    pyhton的参数类型
    python的数组与集合
    python基础--编码
    NSIS的Push与Pop
  • 原文地址:https://www.cnblogs.com/guxingy/p/12468692.html
Copyright © 2020-2023  润新知