I ve used timer and I found it very helpful while taking decisions in seconds or milliseconds. Now I have strong feelings that continuous running of timer gradually increases consumption of processor cycles.
我先提出申请(C#),并用时标执行每1 000毫秒(1秒)的三项指示。 我注意到,在5分钟申请之后,CPU的电力消耗量为5%,10分钟后为10%。
如果这一进展保持不变,那么如果我提出我的申请,在4-5小时之后将会出现什么情况?
我是否应避免过度使用时间?
private void currentTime_Tick(object sender, EventArgs e)
{
label1.Text = DateTime.Now.ToString("HH:mm:ss tt");
label2.Text = dt.AddSeconds(i).ToString("HH:mm:ss");
i++;
}