概述
1. System.Threading.Timer 在什么情况下会悄无声息的“终止”?
msdn的答复:
只要在使用 Timer,就必须保留对它的引用。对于任何托管对象,如果没有对 Timer 的引用,计时器会被垃圾回收。即使 Timer 仍处在活动状态,也会被回收。
2.那么什么是“必须保留对它的引用”呢?网上许多帖子都没有合理的解释。我特地做了个测试。测试过程:
在点击按钮后执行click操作,实例化A和B,A控制textbox1的内容动态显示,B控制textbox2的内容动态显示。A和B中都有threading.timer来不停的更新文本框的内容。
3.如果某一个timer停止了,那么相应的文本框中的内容不会再变化
4.操作开始!~winform窗体上有按钮button1,文本框textbox1和textbox2,然后再cs代码中写入:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
A aa = new A(textBox1);//实例化一个A对象
B bb = new B(textBox2);//实例化一个B对象
}
}
}
class A
{
System.Threading.Timer timer;//定义为成员变量
public A(TextBox tb)
{
aa = 0;
TimerCallback testTime = new TimerCallback(test);
timer = new System.Threading.Timer(testTime,tb,0, 10);
}
int aa;
void test(object status)
{
lock (this)
{
TextBox tb = (TextBox)status;
tb.Invoke(new MethodInvoker(delegate
{
tb.Text ="A"+ aa.ToString();
aa++;
if (aa > 99999999) aa = 0;
}));
}
}
}
class B
{
public B(TextBox tb)
{
aa = 0;
TimerCallback testTime = new TimerCallback(test);
System.Threading.Timer timer = new System.Threading.Timer(testTime, tb, 0, 10);//定义为局部变量
}
int aa;
void test(object status)
{
lock (this)
{
TextBox tb = (TextBox)status;
tb.Invoke(new MethodInvoker(delegate
{
tb.Text ="B"+ aa.ToString();
aa++;
if (aa > 99999999) aa = 0;
}));
}
}
}
5.实验结果:B中timer在执行到500附近被回收了(停止了),而A中timer则一直在执行着。
结论:System.Threading.Timer timer需要定义为类的成员变量,而不是某方法的局部变量,那么这时候就明白“必须保留对它的引用”的意思了
最后
以上就是现代期待为你收集整理的System.Threading.Timer 在什么情况下会悄无声息的“终止”的全部内容,希望文章能够帮你解决System.Threading.Timer 在什么情况下会悄无声息的“终止”所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复