Timer计时不准确的解决方案 每次都重新调整,修正误差

http://stackoverflow.com/questions/29722838/system-timers-timer-steadily-increasing-the-interval

需要在计时器每次运行后,修正计时器的间隔

通过DateTime的Tick来处理     不过这个修正貌似有点不准

复制代码
public class Meter
    {
        private Timer ReadingTime;
        private DateTime NextTickTimeWholeSeconds;

        public Meter()
        {
            DateTime now = DateTime.Now;
            NextTickTimeWholeSeconds = new DateTime(now.Ticks - (now.Ticks % TimeSpan.TicksPerSecond), now.Kind);

            ReadingTime = new Timer();
            ReadingTime.Elapsed += new ElapsedEventHandler(PerformReading);
            ReadingTime.Interval = GetTimeToNextSecond();
        }

        public void StartMeter()
        {
            ReadingTime.Start();
        }

        public void StopMeter()
        {
            ReadingTime.Stop();
        }

        private double GetTimeToNextSecond()
        {
            NextTickTimeWholeSeconds = NextTickTimeWholeSeconds.AddSeconds(1);
            var interval = NextTickTimeWholeSeconds - DateTime.Now;
            return interval.Milliseconds < 1 ? GetTimeToNextSecond() : interval.Milliseconds;
        }

        /// <summary>
        /// 定时处理
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void PerformReading(object sender, ElapsedEventArgs e)
        {
            Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"));
            //Console.WriteLine("Performing reading: " + DateTime.Now.Hour + ":" + DateTime.Now.Minute + ":" + DateTime.Now.Second + "." + DateTime.Now.Millisecond);
            ReadingTime.Interval = GetTimeToNextSecond();
        }
    }
复制代码

 

 

 

 

 

C# + high resolution timer

I found a solution to this problem in the following blog:http://web.archive.org/web/20110910100053/http://www.indigo79.net/archives/27#comment-255

It tells you how to use the multimedia timer to have a timer with high frequency. It is working just fine for me!!!

上面的链接无效,在评论中找到这个http://svn.the-starport.net/utfeditor/UTFEditor/MultimediaTimer.cs

主要是通过调用winmm.dll来计时

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(1570)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
点击右上角即可分享
微信分享提示