C#中计时器Stopwatch的使用

场景

C#中创建计时器用来记录程序运行的时间。

Stopwatch

字段
Frequency 
获取以每秒计时周期数表示的计时器频率。 此字段为只读。
IsHighResolution 
指示计时器是否基于高分辨率性能计数器。 此字段为只读。
属性
Elapsed 
获取当前实例测量得出的总运行时间。
ElapsedMilliseconds 
获取当前实例测量得出的总运行时间(以毫秒为单位)。
ElapsedTicks 
获取当前实例测量得出的总运行时间(用计时器计时周期表示)。
IsRunning 
获取一个指示 Stopwatch 计时器是否在运行的值。
方法
Equals(Object) 
确定指定的对象是否等于当前对象。 (Inherited from Object)
GetHashCode() 
作为默认哈希函数。 (Inherited from Object)
GetTimestamp() 
获取计时器机制中的当前最小时间单位数。
GetType() 
获取当前实例的 Type。 (Inherited from Object)
MemberwiseClone() 
创建当前 Object 的浅表副本。 (Inherited from Object)
Reset() 
停止时间间隔测量,并将运行时间重置为零。
Restart() 
停止时间间隔测量,将运行时间重置为零,然后开始测量运行时间。
Start() 
开始或继续测量某个时间间隔的运行时间。
StartNew() 
对新的 Stopwatch 实例进行初始化,将运行时间属性设置为零,然后开始测量运行时间。
Stop() 
停止测量某个时间间隔的运行时间。
ToString() 
返回表示当前对象的字符串。 (Inherited from Object)

实现

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace StopWatch
{
    class Program
    {
        static void Main(string[] args)
        {
            StringBuilder sb = new StringBuilder();
            //创建计时器,用来记录程序运行的时间
            //按shift+alt+f10 引入命名空间using System.Diagnostics;
            Stopwatch sw = new Stopwatch();
            //开始计时
            sw.Start();
            for (int  i =0; i<100000; i++)
            {
                sb.Append(i);
            }
            sw.Stop();//结束计时
            Console.WriteLine(sw.Elapsed);
            Console.ReadKey();
        }
    }
}

效果

C#中计时器Stopwatch的使用_第1张图片

 

你可能感兴趣的:(C#)