[C#]System.Timers.Timer

Posted tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[C#]System.Timers.Timer相关的知识,希望对你有一定的参考价值。

摘要

在.Net中有几种定时器,最喜欢用的是System.Timers命名空间下的定时器,使用起来比较简单,作为定时任务,有Quartz.net,但有时候,一个非常简单的任务,不想引入这个定时任务框架,用Timer完全可以满足要求。

一个例子

每一秒在控制台上打印时间。

    class Program
    {
        static void Main(string[] args)
        {
            var timer = new System.Timers.Timer();
            timer.Elapsed += timer_Elapsed;

            timer.AutoReset = true;
            timer.Enabled = true;
            timer.Interval = 1000;
            Console.Read();
        }

        private static void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
        {
            Console.WriteLine(e.SignalTime.ToString());
        }
    }

 timer.AutoReset = true;注意,AutoReset属性,如果你希望到时间了,不停的执行Elapsed事件,要将其设置为true。它的作用类似js中的setInterval方法,如果为false,类似于js中的setTimerout方法,只执行一次。

所以在使用timer的时候,你要考虑到业务需求,是执行一次,还是不停的执行。

以上是关于[C#]System.Timers.Timer的主要内容,如果未能解决你的问题,请参考以下文章

[C#]System.Timers.Timer

C# system.timers.timer 奇怪的行为

通过C#的System.Timers.Timer封装一个定时任务工具

使用System.Timers.Timer类实现程序定时执行

c# 怎么设置 System.Timers.Timer执行次数 t5.AutoReset = false;

System.Timers.Timer 每秒最多只能提供 64 帧

(c)2006-2024 SYSTEM All Rights Reserved IT常识