C#里面的三种定时计时器:Timer

在.NET中有三种计时器:
1、System.Windows.Forms命名空间下的Timer控件,它直接继承自Componet。Timer控件只有绑定了Tick事件和设置Enabled=True后才会自动计时,停止计时可以用Stop()方法控制,通过Stop()停止之后,如果想重新计时,可以用Start()方法来启动计时器。Timer控件和它所在的Form属于同一个线程;
2、System.Timers命名空间下的Timer类。System.Timers.Timer类:定义一个System.Timers.Timer对象,然后绑定Elapsed事件,通过Start()方法来启动计时,通过Stop()方法或者Enable=false停止计时。AutoReset属性设置是否重复计时(设置为false只执行一次,设置为true可以多次执行)。Elapsed事件绑定相当于另开了一个线程,也就是说在Elapsed绑定的事件里不能访问其它线程里的控件(需要定义委托,通过Invoke调用委托访问其它线程里面的控件)。
3、System.Threading.Timer类。定义该类时,通过构造函数进行初始化。
在上面所述的三种计时器中,第一种计时器和它所在的Form处于同一个线程,因此执行的效率不高;而第二种和第三种计时器执行的方法都是新开一个线程,所以执行效率比第一种计时器要好,因此在选择计时器时,建议使用第二种和第三种。

下面是三种定时器使用的例子:

1、Timer控件

设计界面:

后台代码:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Windows.Forms;
 9 
10 namespace TimerDemo
11 {
12     public partial class FrmMain : Form
13     {
14         //定义全局变量
15         public int currentCount = 0;
16         public FrmMain()
17         {
18             InitializeComponent();
19         }
20 
21         private void FrmMain_Load(object sender, EventArgs e)
22         {
23             //设置Timer控件可用
24             this.timer.Enabled = true;
25             //设置时间间隔(毫秒为单位)
26             this.timer.Interval = 1000;
27         }
28 
29         private void timer_Tick(object sender, EventArgs e)
30         {
31             currentCount += 1;
32             this.txt_Count.Text = currentCount.ToString().Trim();
33         }
34 
35         private void btn_Start_Click(object sender, EventArgs e)
36         {
37             //开始计时
38             this.timer.Start();
39         }
40 
41         private void btn_Stop_Click(object sender, EventArgs e)
42         {
43             //停止计时
44             this.timer.Stop();
45         }
46     }
47 }

2、System.Timers.Timer

设计界面:

后台代码:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Windows.Forms;
 9 
10 namespace TimersTimer
11 {
12     public partial class FrmMain : Form
13     {
14         //定义全局变量
15         public int currentCount = 0;
16         //定义Timer类
17         System.Timers.Timer timer;
18         //定义委托
19         public delegate void SetControlValue(string value);
20 
21         public FrmMain()
22         {
23             InitializeComponent();
24         }
25 
26         private void Form1_Load(object sender, EventArgs e)
27         {
28             InitTimer();
29         }
30 
31         /// <summary>
32         /// 初始化Timer控件
33         /// </summary>
34         private void InitTimer()
35         {
36             //设置定时间隔(毫秒为单位)
37             int interval = 1000;
38             timer = new System.Timers.Timer(interval);
39             //设置执行一次(false)还是一直执行(true)
40             timer.AutoReset = true;
41             //设置是否执行System.Timers.Timer.Elapsed事件
42             timer.Enabled = true;
43             //绑定Elapsed事件
44             timer.Elapsed += new System.Timers.ElapsedEventHandler(TimerUp);
45         }
46 
47         /// <summary>
48         /// Timer类执行定时到点事件
49         /// </summary>
50         /// <param name="sender"></param>
51         /// <param name="e"></param>
52         private void TimerUp(object sender, System.Timers.ElapsedEventArgs e)
53         {
54             try
55             {
56                 currentCount += 1;
57                 this.Invoke(new SetControlValue(SetTextBoxText),currentCount.ToString());
58             }
59             catch (Exception ex)
60             {
61                 MessageBox.Show("执行定时到点事件失败:" + ex.Message);
62             }
63         }
64 
65         /// <summary>
66         /// 设置文本框的值
67         /// </summary>
68         /// <param name="strValue"></param>
69         private void SetTextBoxText(string strValue)
70         {
71             this.txt_Count.Text = this.currentCount.ToString().Trim();
72         }
73 
74         private void btn_Start_Click(object sender, EventArgs e)
75         {
76             timer.Start();
77         }
78 
79         private void btn_Stop_Click(object sender, EventArgs e)
80         {
81             timer.Stop();
82         }
83     }
84 }

3、System.Threading.Timer

设计界面:

后台代码:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Windows.Forms;
 9 using System.Threading;
10 
11 namespace Threading.Timer
12 {
13     public partial class FrmMain : Form
14     {
15         //定义全局变量
16         public int currentCount = 0;
17         //定义Timer类
18         System.Threading.Timer threadTimer;
19         //定义委托
20         public delegate void SetControlValue(object value);
21 
22         public FrmMain()
23         {
24             InitializeComponent();
25         }
26 
27         private void FrmMain_Load(object sender, EventArgs e)
28         {
29             InitTimer();
30         }
31 
32         /// <summary>
33         /// 初始化Timer类
34         /// </summary>
35         private void InitTimer()
36         {
37             threadTimer = new System.Threading.Timer(new TimerCallback(TimerUp), null, Timeout.Infinite, 1000);
38         }
39 
40         /// <summary>
41         /// 定时到点执行的事件
42         /// </summary>
43         /// <param name="value"></param>
44         private void TimerUp(object value)
45         {
46             currentCount += 1;
47             this.Invoke(new SetControlValue(SetTextBoxValue), currentCount);
48         }
49 
50         /// <summary>
51         /// 给文本框赋值
52         /// </summary>
53         /// <param name="value"></param>
54         private void SetTextBoxValue(object value)
55         {
56             this.txt_Count.Text = value.ToString();
57         }
58 
59         /// <summary>
60         /// 开始
61         /// </summary>
62         /// <param name="sender"></param>
63         /// <param name="e"></param>
64         private void btn_Start_Click(object sender, EventArgs e)
65         {
66             //立即开始计时,时间间隔1000毫秒
67             threadTimer.Change(0, 1000);
68         }
69 
70         /// <summary>
71         /// 停止
72         /// </summary>
73         /// <param name="sender"></param>
74         /// <param name="e"></param>
75         private void btn_Stop_Click(object sender, EventArgs e)
76         {
77             //停止计时
78             threadTimer.Change(Timeout.Infinite, 1000);
79         }
80     }
81 }

 代码下载链接:http://files.cnblogs.com/files/dotnet261010/Timer.rar

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541019.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

wireshark rto_RTO的完整形式是什么?

wireshark rtoRTO&#xff1a;地区运输办公室/公路运输办公室 (RTO: Regional Transport Office/ Road Transport Office) RTO is an abbreviation of the Regional Transport Office. It is an Indian Government departmental organization that is responsible for upholdin…

有效的网络推广超级实用方法

我叫龙雨&#xff0c;先后在百度搜狗工作过3年&#xff0c;后来一直负责一家公司的的网络营销!不知道大家有没有听过111>3这样一个概念&#xff0c;简单来说一下这概念!第一呢就是自己的资源&#xff0c;把自己的资源维护好开发好;第二就是网络营销&#xff0c;网络营销利用…

linux上mysql分区磁盘位置_Linux下Oracle软件、数据文件等所在的磁盘分区空间不足的解决思路...

虚拟机中的ORACLE运行的久了&#xff0c;归档、数据文件不断增长&#xff0c;原来安装ORACLE的分区空间不足。此时可以重新向虚拟机增加一块硬盘&#xff0c;将OR虚拟机中的Oracle运行的久了&#xff0c;归档、数据文件不断增长&#xff0c;原来安装ORACLE的分区空间不足。此时…

FloatingActionMenu 向上弹出菜单

本人在github上找到了一个FloatingActionsMenu,精简了其效果&#xff08;原效果有上下左右四个方向&#xff09;仅仅保留向上的效果&#xff0c;并做了一定的优化。github上的源代码&#xff1a;地址 &#xff0c;精简后的源代码地址:源代码地址。 转载于:https://www.cnblogs.…

给孩子一束安全的光 明基WiT MindDuo亲子共读灯首发评测

论一束光的重要性你该听听一个高度近视孩子的自述&#xff0c;论童年陪伴的重要性你该听听一个留守儿童的自述&#xff0c;改善孩子童年的全球第一盏亲子共读台灯&#xff0c;贴合孩子与家长的心灵&#xff0c;量身打造每一种情境的光线去感受孩子成长学习过程 一个高度近视眼孩…

mysql怎样查表的模式_mysql常用基础操作语法(四)--对数据的简单无条件查询及库和表查询【命令行模式】...

1、mysql简单的查询&#xff1a;select 字段1&#xff0c;字段2... from tablename;如果字段那里写一个*&#xff0c;代表查询所有的字段&#xff0c;等同于指定出所有的字段名&#xff0c;因此如果要查询所有字段的数据&#xff0c;一般都是用*。2、去重查询&#xff1a;selec…

Google再次从官方商店下架伪装成合法程序的恶意应用

本月内的第二次&#xff0c;Google 从官方应用商店 Google Play 移除了伪装成合法程序的恶意应用。被移除的应用都属于名叫 Ztorg 的 Android 恶意程序家族&#xff0c;能利用已知的漏洞 root 被感染的设备&#xff0c;使其很难被删除。自去年 9 月以来&#xff0c;Ztorg 恶意应…

【载誉】致远互联荣获“2017最佳协同管理解决方案”殊荣

6月15日&#xff0c;一年一度的大连软交会于大连市世界博览广场盛大举行。“2017企业服务创新论坛”作为软交会最重要的组成部分之一&#xff0c;本年度以“守正出新——通往基业长青的数字化选择”为主题&#xff0c;吸引到近200位企业级服务领域的企业家及高管参加。致远互联…

RabbitMQ安装|使用|概念|Golang开发

手册:http://www.rabbitmq.com/getstarted.html 安装:http://www.rabbitmq.com/download.html 参考&#xff1a;http://blog.csdn.net/whycold/article/details/41119807 一.介绍 AMQP&#xff0c;即Advanced Message Queuing Protocol&#xff0c;高级消息队列协议&#xff0c…

MS的完整形式是什么?

硕士&#xff1a;理学硕士/外科硕士/ MicroSoft (MS: Master of Science / Master of Surgery / MicroSoft) 1)硕士&#xff1a;理学硕士 (1) MS: Master of Science) MS is an abbreviation of Master of Science. It is a masters degree program provided by universities i…

人工智能能够构建一个自主驱动云吗?

企业和组织可以从云计算中受益&#xff0c;但许多公司并不希望面对公共云的成本&#xff0c;性能和治理问题&#xff0c;并且认为构建自己的私有云的复杂性和运营开销并没有那么困难。 如今&#xff0c;一些云计算供应商正在使用人工智能&#xff08;AI&#xff09;来简化私有云…

前端必备的 web 安全知识手记

前言 安全这种东西就是不发生则已&#xff0c;一发生则惊人。作为前端&#xff0c;平时对这方面的知识没啥研究&#xff0c;最近了解了下&#xff0c;特此沉淀。文章内容包括以下几个典型的 web 安全知识点&#xff1a;XSS、CSRF、点击劫持、SQL 注入和上传问题等&#xff08;…

php属于脚本,php是脚本语言吗

PHP即“超文本预处理器”&#xff0c;是一种通用开源脚本语言。PHP是在服务器端执行的脚本语言&#xff0c;与C语言类似&#xff0c;是常用的网站编程语言。PHP独特的语法混合了C、Java、Perl以及 PHP 自创的语法。利于学习&#xff0c;使用广泛&#xff0c;主要适用于Web开发领…

NetMarketShare:本月桌面浏览器市场份额几乎没有变化

NetMarketShare之前关于台式机浏览器市场份额的报告表示&#xff0c;Google Chrome市场份额正在快速上升&#xff0c;而Edge浏览器市场份额正在以蜗牛的速度前进。而该公司的最新统计数据显示&#xff0c;几乎所有浏览器的市场份额或多或少保持不变。 NetMarketShare的最新统计…

lnmp解析php,LNMP之 php解析

[rootLNMP ~]# vim /usr/local/nginx/conf/nginx.conf打开以下PHP 相关项且更改 scripts$fastcgi_script_name;> /usrlocal/nginx/html$fastcgi_script_name;location ~ \.php$ {root html;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param…

计算机网络中的传输协议是_计算机网络中的传输方式

计算机网络中的传输协议是传输方式 (Transmission Modes) The mechanism of transferring data or information between two linked devices connected over a network is referred to as Transmission Modes. 在通过网络连接的两个链接的设备之间传输数据或信息的机制称为传输…

https 密钥 php,https加密方式是什么

Https加密介绍Http直接通过明文在浏览器和服务器之间传递消息&#xff0c;容易被监听抓取到通信内容。Https采用对称加密和非对称加密结合的方式来进行通信。Https不是应用层的新协议&#xff0c;而是Http通信接口用SSL和TLS来加强加密和认证机制。加密方式对称加密&#xff1a…

java get post 注解,GET/POST接收或发送数据的问题

在文章开始&#xff0c;先来回忆一下GET、POST这两种请求方式的区别。❈Http定义了与服务器交互的不同方法&#xff0c;最基本的方法有4种&#xff0c;分别是GET&#xff0c;POST&#xff0c;PUT&#xff0c;DELETE。URL全称是资源描述符&#xff0c;我们可以这样认为&#xff…

Apple新发布的APFS文件系统对用户意味着什么

2016年WWDC大会上&#xff0c;Apple除了公布watchOS、tvOS、macOS以及iOS等一系列系统和软件更新外&#xff0c;还公布了一个名为APFS&#xff08;Apple File System&#xff09;的文件系统。 这一全新文件系统专门针对闪存/SSD进行优化&#xff08;但依然可用于传统机械硬盘&a…

tps 交易量_交易处理系统(TPS)

tps 交易量A transaction is a simple process that takes place during business operations. The transaction processing system (TPS) manages the business transactions of the client and therefore helps a companys operations. A TPS registers, as well as all of i…