在 C# 中使用秒表
Muhammad Maisam Abbas
2021年4月29日
本教程将讨论在 C# 中计算经过时间的方法。
使用 C# 中的秒表
类计算经过时间
Stopwatch
类在 C# 中准确测量经过的时间。Stopwatch.Start()
方法启动秒表,Stopwatch.Stop()
方法停止秒表并计算经过的时间。
以下代码示例向我们展示了如何计算一段代码用 C# 中的 Stopwatch
类执行所花费的时间。
using System;
using System.Diagnostics;
namespace stopwatch
{
class Program
{
static void StopwatchUsingMethod()
{
var timer = new Stopwatch();
timer.Start();
for(int i = 0; i<1000000000; i++)
{
int x = i * i + 1;
}
timer.Stop();
TimeSpan timeTaken = timer.Elapsed;
string foo = "Time taken: " + timeTaken.ToString(@"m\:ss\.fff");
Console.WriteLine(foo);
}
static void Main(string[] args)
{
StopwatchUsingMethod();
}
}
}
输出:
Time taken: 0:03.226
在上面的代码中,我们创建了 Stopwatch
类 timer
的实例,并计算了 for
循环执行所需的时间。我们使用 timer.Start()
方法启动秒表,并使用 timer.Stop()
方法停止秒表。我们使用 timer.Elapsed
属性将经过的时间存储在 TimeSpan
类的实例中,并使用 C# 中的 ToString()
函数将其转换为字符串变量。
Author: Muhammad Maisam Abbas
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn