如何在C#中創(chuàng)建一個高精度的定時器?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都網(wǎng)站設(shè)計、成都網(wǎng)站制作服務(wù)團隊是一支充滿著熱情的團隊,執(zhí)著、敏銳、追求更好,是創(chuàng)新互聯(lián)的標(biāo)準(zhǔn)與要求,同時竭誠為客戶提供服務(wù)是我們的理念。成都創(chuàng)新互聯(lián)公司把每個網(wǎng)站當(dāng)做一個產(chǎn)品來開發(fā),精雕細琢,追求一名工匠心中的細致,我們更用心!System.Threading.Timer
System.Timers.Timer
System.Windows.Forms.Timer (Windows Forms 的定時器)
System.Windows.Threading.DispatcherTimer (WPF 的定時器)
通常他們的精度只能維持在10-20ms之間,這個和操作系統(tǒng)相關(guān),所以我們在很多場景下面這個是不能夠達到我們精度的要求的,如果要實現(xiàn)這一需求我們該怎么辦,當(dāng)然也有很多辦法,今天主要介紹一種Stopwatch來實現(xiàn)的方式,網(wǎng)上有很多采用Win32 Dll的API這個當(dāng)然是可以的,這篇文章的重點不是去討論這個,關(guān)于使用Win32 API的方式可以參考這里。
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.InteropServices; using System.Text; namespace Pangea.Common.Utility { ////// .Net Stopwatch對高精度定時器作了很好的包裝 /// DeviceTimer內(nèi)部采用Stopwatch類實現(xiàn)高精度定時操作 /// public sealed class DeviceTimer { #if USE_CPU_COUNTING //引入高性能計數(shù)器API,通過對CPU計數(shù)完成計時 [DllImport("Kernel32.dll")] private static extern bool QueryPerformanceCounter(out long lpPerformanceCount); //獲取當(dāng)前CPU的工作頻率 [DllImport("Kernel32.dll")] private static extern bool QueryPerformanceFrequency(out long lpFrequency); #else ////// 獲取TickCount64計數(shù) /// /////[DllImport("kernel32.dll")] //public static extern long GetTickCount64(); #endif private enum DeviceTimerState { TM_ST_IDLE = 0, TM_ST_BUSY = 1, TM_ST_TIMEOUT = 2, } /// /// Stopwatch object /// Stopwatch _stopWatch = new Stopwatch(); ////// 定時器內(nèi)部狀態(tài) /// DeviceTimerState _state; ////// 定時器開始計時時刻的相對時間點 /// long _startTime; ////// 定時器超時時刻的相對時間點 /// long _timeOut; #if USE_CPU_COUNTING ////// CPU運行的時鐘頻率 /// double _freq; #endif ////// 定時時間(單位:ms) /// double _duration; ////// class constructure /// public DeviceTimer() { #if USE_CPU_COUNTING long freq; if (QueryPerformanceFrequency(out freq) == false) throw new Exception("本計算機不支持高性能計數(shù)器"); //得到每1ms的CPU計時TickCount數(shù)目 _freq = (double)freq / 1000.0; QueryPerformanceCounter(out _startTime); #else _stopWatch.Start(); _startTime = 0; #endif SetState(DeviceTimerState.TM_ST_IDLE); _timeOut = _startTime; _duration = 0; } ////// 內(nèi)部調(diào)用:設(shè)置定時器當(dāng)前狀態(tài) /// /// private void SetState(DeviceTimerState state) { _state = state; } ////// 內(nèi)部調(diào)用:返回定時器當(dāng)前狀態(tài) /// ///private DeviceTimerState GetState() { return _state; } /// /// 定時器開始計時到現(xiàn)在已流逝的時間(單位:毫秒) /// ///public double GetElapseTime() { long curCount; #if USE_CPU_COUNTING QueryPerformanceCounter(out curCount); return (double)(curCount - _startTime) / (double)_freq; #else curCount = _stopWatch.ElapsedMilliseconds; return curCount - _startTime; #endif } /// /// 獲取定時總時間 /// ///public double GetTotalTime() { return _duration; } /// /// 停止計時器計時 /// public void Stop() { SetState(DeviceTimerState.TM_ST_IDLE); #if USE_CPU_COUNTING QueryPerformanceCounter(out _startTime); #else _startTime = _stopWatch.ElapsedMilliseconds; #endif _timeOut = _startTime; _duration = 0; } ////// 啟動定時器 /// /// 定時時間(單位:毫秒) public void Start(double delay_ms) { #if USE_CPU_COUNTING QueryPerformanceCounter(out _startTime); _timeOut = Convert.ToInt64(_startTime + delay_ms * _freq); #else _startTime = _stopWatch.ElapsedMilliseconds; _timeOut = Convert.ToInt64(_startTime + delay_ms); #endif SetState(DeviceTimerState.TM_ST_BUSY); _duration = delay_ms; } ////// 重新開始定時器 /// 開始的計時時間以上一次Start的時間為準(zhǔn) /// /// 定時時間(單位:毫秒) public void Restart(double delay_ms) { #if USE_CPU_COUNTING _timeOut = Convert.ToInt64(_startTime + delay_ms * _freq); #else _timeOut = Convert.ToInt64(_startTime + delay_ms); #endif SetState(DeviceTimerState.TM_ST_BUSY); _duration = delay_ms; } ////// 返回定時器是否超時 /// ///public bool IsTimeout() { if (_state == DeviceTimerState.TM_ST_IDLE) { //System.Diagnostics.Debug.WriteLine("Warning: Misuage of the device timer. You must start it first before you can use it."); //System.Diagnostics.Debug.Assert(false, "Warning: Misuage of the device timer. You must start it first before you can use it."); } long curCount; #if USE_CPU_COUNTING QueryPerformanceCounter(out curCount); #else curCount = _stopWatch.ElapsedMilliseconds; #endif if (_state == DeviceTimerState.TM_ST_BUSY && (curCount >= _timeOut)) { SetState(DeviceTimerState.TM_ST_TIMEOUT); return true; } else if (_state == DeviceTimerState.TM_ST_TIMEOUT) { return true; } return false; } /// /// 定時器是否在工作中 /// ///public bool IsIdle() { return (_state == DeviceTimerState.TM_ST_IDLE); } } }
這個里面我們在DeviceTimer中定義了一個私有的_stopWatch 對象并且在構(gòu)造函數(shù)中就啟動了這個Stopwatch,所以我們在使用的時候是通過先創(chuàng)建一個DeveiceTimer的對象然后我們再調(diào)用內(nèi)部的Start方法,當(dāng)然在調(diào)用這個方法的時候我們需要傳入一個定時時間,然后不斷檢測IsTimeout方法看是否到達定時時間,從而達到類似于定時時間到的效果,另外GetElapseTime()方法能夠獲取從調(diào)用Start方法開始到現(xiàn)在的時間,另外我們還在其中定義了幾個枚舉值用來表示當(dāng)前DeviceTimer的狀態(tài)用于做一些狀態(tài)的校驗,具體數(shù)值如下。
private enum DeviceTimerState { TM_ST_IDLE = 0, TM_ST_BUSY = 1, TM_ST_TIMEOUT = 2, }
這里還有最后一個問題就是循環(huán)調(diào)用的問題,這個其實也是非常簡單就在一個While循環(huán)中不斷進行調(diào)用,當(dāng)然下面的代碼可以有很多內(nèi)容供我們?nèi)グl(fā)揮的,這個可以根據(jù)自己的需要進行修改。
using System; using System.Threading.Tasks; namespace DeviceTimerConsoleApp { class Program { private static bool flag = true; static void Main(string[] args) { Task.Factory.StartNew(() => { var deviceTimer = new DeviceTimer(); deviceTimer.Start(5); while (flag) { if (deviceTimer.IsTimeout()) { Console.WriteLine($"定時時間已到,距離開始執(zhí)行已過去:{deviceTimer.GetElapseTime()}ms"); deviceTimer.Start(5); } } }); Console.ReadKey(); } } }
看完上述內(nèi)容,你們掌握如何在C#中創(chuàng)建一個高精度的定時器的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!