在 C# 控制台应用程序中构建计时器
本指南演示如何使用 System.Threading.Timer
类将计时器集成到 C# 控制台应用程序中。 此类简化了按设定时间间隔重复执行方法的过程。
实现示例:
以下代码展示了如何创建一个Timer
对象,定义其回调方法、执行间隔(以毫秒为单位)和一个可选的状态对象:
<code class="language-csharp">using System; using System.Threading; public class TimerExample { private Timer _timer; public void Main(string[] args) { // Creates a timer that calls TimerCallback every 2 seconds (2000 milliseconds) _timer = new Timer(TimerCallback, null, 0, 2000); // Keeps the console application running until the user presses Enter Console.ReadLine(); } private void TimerCallback(object state) { // Actions to perform at each timer interval, e.g., updating data or displaying a message Console.WriteLine("Timer event triggered at: " + DateTime.Now); } }</code>
使用 GC.KeepAlive()
在频繁循环执行的情况下,可能会发生不必要的资源消耗。 GC.KeepAlive()
方法有助于优化垃圾收集,从而改进内存管理。
增强代码:
此更新的代码合并了 GC.KeepAlive()
以实现更好的资源处理:
<code class="language-csharp">// ... previous code ... private static void TimerCallback(Object o) { GC.KeepAlive(o); // Prevents premature garbage collection of the 'o' object // ... rest of the TimerCallback method ... }</code>
这些方法允许将计时器有效地集成到您的 C# 控制台应用程序中,从而能够按定义的时间间隔执行计划任务。
以上是如何在 C# 控制台应用程序中实现计时器?的详细内容。更多信息请关注PHP中文网其他相关文章!