C# 中的计时器

Muhammad Maisam Abbas 2024年2月16日
C# 中的计时器

本教程将讨论在 C# 中创建计时器的方法。

在 C# 中使用 Timer 类创建一个计时器

Timer 类用于在 C# 中设定的时间间隔后创建事件。我们可以生成一个事件,该事件在 C# 中的 Timer 类中经过指定的时间后会重复发生。Timer.Elapsed 事件用于指定要重复的事件。以下代码示例向我们展示了如何创建一个计时器,该计时器使用 C# 中的 Timer 类在指定的时间间隔后重复一个事件。

using System;
using System.Timers;

namespace timer {
  class Program {
    private static void OnTimedEvent(object source, ElapsedEventArgs e) {
      Console.WriteLine("Hello World!");
    }
    static void Main(string[] args) {
      System.Timers.Timer myTimer = new System.Timers.Timer();
      myTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
      myTimer.Interval = 500;
      myTimer.Enabled = true;

      Console.WriteLine("Press \'e\' to escape the sample.");
      while (Console.Read() != 'e')
        ;
    }
  }
}

输出:

Press 'e' to escape the sample.
Hello World!
e

在上面的代码中,我们创建了一个计时器,该计时器重复输出 Hello World!500 毫秒后,直到在 C# 中输入字符 e。我们首先初始化了 Timer 类的实例 myTimer。然后,我们将 OnTimedEvent() 函数指定为 Time.Elapsed 事件的事件。使用 myTimer.Interval 属性将间隔设置为 500 毫秒。最后,我们使用 myTimer.Enabled 属性启动了计时器。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

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

相关文章 - Csharp Timer