6

以下简单的周期性计时器(应该无限运行)在运行 61 次后停止。如果我改为.FromMinutes(10)

static void Main(string[] args) {
    var timerEvery5 = new Timer(
            new TimerCallback((o) => Console.WriteLine("5-minutes handler launched at {0}", DateTime.Now.ToString("yyyy-MM-dd HH:mm"))),
            null,
            new TimeSpan(0), // first run immediately
            TimeSpan.FromMinutes(5)); // then every 5 minutes
    for (; ; )
        Thread.Sleep(23457);
}

我在几个带有 .Net 4.5 的 Windows 8 64 位系统上进行了尝试。该程序是从命令外壳编译和运行的。这是一个错误还是我错过了什么?

4

1 回答 1

8

timerEvery5我相信由于运行时优化并确定该变量不再在方法中被引用,您的计时器正在收集垃圾......尝试将其设置为静态变量,看看它是否解决了问题。或者GC.KeepAlive(timerEvery5);在睡眠循环之后调用,因为该调用保持变量 un-GC'd 直到方法被执行(有点不直观)。

编辑:根据此链接: http: //msdn.microsoft.com/en-us/library/system.timers.timer.aspx请参阅第一个示例,因为它是一个类似的问题。引用示例:

// If the timer is declared in a long-running method, use 
// KeepAlive to prevent garbage collection from occurring 
// before the method ends. 
//GC.KeepAlive(aTimer);
于 2013-09-11T20:01:11.427 回答