C# 用于准确地测量运行时间的Stopwatch中.Start 方法和Stopwatch.Stop 方法

本文主要是介绍C# 用于准确地测量运行时间的Stopwatch中.Start 方法和Stopwatch.Stop 方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 

一、Stopwatch 类

        提供一组方法和属性,可用于准确地测量运行时间。

public class Stopwatch

        使用 Stopwatch 类来确定应用程序的执行时间。

// 使用 Stopwatch 类来确定应用程序的执行时间
using System.Diagnostics;
class Program
{static void Main(string[] args){ArgumentNullException.ThrowIfNull(args);Stopwatch stopWatch = new();stopWatch.Start();Thread.Sleep(10000);stopWatch.Stop();// Get the elapsed time as a TimeSpan value.TimeSpan ts = stopWatch.Elapsed;// Format and display the TimeSpan value.string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",ts.Hours, ts.Minutes, ts.Seconds,ts.Milliseconds / 10);Console.WriteLine("RunTime " + elapsedTime);}
}
//运行结果:
/*
RunTime 00:00:10.01*/
// 使用 Stopwatch 类来计算性能数据。
using System.Diagnostics;namespace StopWatchSample
{class OperationsTimer{public static void Main(string[] args){ArgumentNullException.ThrowIfNull(args);DisplayTimerProperties();Console.WriteLine();Console.WriteLine("Press the Enter key to begin:");Console.ReadLine();Console.WriteLine();TimeOperations();}public static void DisplayTimerProperties(){// Display the timer frequency and resolution.if (Stopwatch.IsHighResolution){Console.WriteLine("Operations timed using the system's high-resolution performance counter.");}else{Console.WriteLine("Operations timed using the DateTime class.");}long frequency = Stopwatch.Frequency;Console.WriteLine("  Timer frequency in ticks per second = {0}",frequency);long nanosecPerTick = (1000L * 1000L * 1000L) / frequency;Console.WriteLine("  Timer is accurate within {0} nanoseconds",nanosecPerTick);}private static void TimeOperations(){long nanosecPerTick = (1000L * 1000L * 1000L) / Stopwatch.Frequency;const long numIterations = 10000;// Define the operation title names.string[] operationNames = {"Operation: Int32.Parse(\"0\")","Operation: Int32.TryParse(\"0\")","Operation: Int32.Parse(\"a\")","Operation: Int32.TryParse(\"a\")"};// Time four different implementations for parsing// an integer from a string.for (int operation = 0; operation <= 3; operation++){// Define variables for operation statistics.long numTicks = 0;long numRollovers = 0;long maxTicks = 0;long minTicks = long.MaxValue;int indexFastest = -1;int indexSlowest = -1;Stopwatch time10kOperations = Stopwatch.StartNew();// Run the current operation 10001 times.// The first execution time will be tossed// out, since it can skew the average time.for (int i = 0; i <= numIterations; i++){long ticksThisTime = 0;int inputNum;Stopwatch timePerParse;switch (operation){case 0:// Parse a valid integer using// a try-catch statement.// Start a new stopwatch timer.timePerParse = Stopwatch.StartNew();try{inputNum = int.Parse("0");}catch (FormatException){inputNum = 0;}// Stop the timer, and save the// elapsed ticks for the operation.timePerParse.Stop();ticksThisTime = timePerParse.ElapsedTicks;break;case 1:// Parse a valid integer using// the TryParse statement.// Start a new stopwatch timer.timePerParse = Stopwatch.StartNew();if (!int.TryParse("0", out inputNum)){inputNum = 0;}// Stop the timer, and save the// elapsed ticks for the operation.timePerParse.Stop();ticksThisTime = timePerParse.ElapsedTicks;break;case 2:// Parse an invalid value using// a try-catch statement.// Start a new stopwatch timer.timePerParse = Stopwatch.StartNew();try{inputNum = int.Parse("a");}catch (FormatException){inputNum = 0;}// Stop the timer, and save the// elapsed ticks for the operation.timePerParse.Stop();ticksThisTime = timePerParse.ElapsedTicks;break;case 3:// Parse an invalid value using// the TryParse statement.// Start a new stopwatch timer.timePerParse = Stopwatch.StartNew();if (!int.TryParse("a", out inputNum)){inputNum = 0;}// Stop the timer, and save the// elapsed ticks for the operation.timePerParse.Stop();ticksThisTime = timePerParse.ElapsedTicks;break;default:break;}// Skip over the time for the first operation,// just in case it caused a one-time// performance hit.if (i == 0){time10kOperations.Reset();time10kOperations.Start();}else{// Update operation statistics// for iterations 1-10000.if (maxTicks < ticksThisTime){indexSlowest = i;maxTicks = ticksThisTime;}if (minTicks > ticksThisTime){indexFastest = i;minTicks = ticksThisTime;}numTicks += ticksThisTime;if (numTicks < ticksThisTime){// Keep track of rollovers.numRollovers++;}}}// Display the statistics for 10000 iterations.time10kOperations.Stop();long milliSec = time10kOperations.ElapsedMilliseconds;Console.WriteLine();Console.WriteLine("{0} Summary:", operationNames[operation]);Console.WriteLine("  Slowest time:  #{0}/{1} = {2} ticks",indexSlowest, numIterations, maxTicks);Console.WriteLine("  Fastest time:  #{0}/{1} = {2} ticks",indexFastest, numIterations, minTicks);Console.WriteLine("  Average time:  {0} ticks = {1} nanoseconds",numTicks / numIterations,(numTicks * nanosecPerTick) / numIterations);Console.WriteLine("  Total time looping through {0} operations: {1} milliseconds",numIterations, milliSec);}}}
}
//运行结果:
/*
Operations timed using the system's high-resolution performance counter.Timer frequency in ticks per second = 10000000Timer is accurate within 100 nanoseconds*/

1.Stopwatch.Start 方法

        开始或继续测量某个时间间隔的运行时间。

        前例中有示例。 

public void Start ();

2.Stopwatch.Stop 方法

        停止测量某个时间间隔的运行时间。

public void Stop ();

        前例中有示例。

这篇关于C# 用于准确地测量运行时间的Stopwatch中.Start 方法和Stopwatch.Stop 方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/634394

相关文章

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Window Server2016加入AD域的方法步骤

《WindowServer2016加入AD域的方法步骤》:本文主要介绍WindowServer2016加入AD域的方法步骤,包括配置DNS、检测ping通、更改计算机域、输入账号密码、重启服务... 目录一、 准备条件二、配置ServerB加入ServerA的AD域(test.ly)三、查看加入AD域后的变

Window Server2016 AD域的创建的方法步骤

《WindowServer2016AD域的创建的方法步骤》本文主要介绍了WindowServer2016AD域的创建的方法步骤,文中通过图文介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、准备条件二、在ServerA服务器中常见AD域管理器:三、创建AD域,域地址为“test.ly”

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

Java 字符数组转字符串的常用方法

《Java字符数组转字符串的常用方法》文章总结了在Java中将字符数组转换为字符串的几种常用方法,包括使用String构造函数、String.valueOf()方法、StringBuilder以及A... 目录1. 使用String构造函数1.1 基本转换方法1.2 注意事项2. 使用String.valu

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

c# checked和unchecked关键字的使用

《c#checked和unchecked关键字的使用》C#中的checked关键字用于启用整数运算的溢出检查,可以捕获并抛出System.OverflowException异常,而unchecked... 目录在 C# 中,checked 关键字用于启用整数运算的溢出检查。默认情况下,C# 的整数运算不会自

C#实现获得某个枚举的所有名称

《C#实现获得某个枚举的所有名称》这篇文章主要为大家详细介绍了C#如何实现获得某个枚举的所有名称,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考一下... C#中获得某个枚举的所有名称using System;using System.Collections.Generic;usi

C# 读写ini文件操作实现

《C#读写ini文件操作实现》本文主要介绍了C#读写ini文件操作实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、INI文件结构二、读取INI文件中的数据在C#应用程序中,常将INI文件作为配置文件,用于存储应用程序的

Python中使用defaultdict和Counter的方法

《Python中使用defaultdict和Counter的方法》本文深入探讨了Python中的两个强大工具——defaultdict和Counter,并详细介绍了它们的工作原理、应用场景以及在实际编... 目录引言defaultdict的深入应用什么是defaultdictdefaultdict的工作原理