C#定时器的用法

关于C#中timer类  在C#里关于定时器类就有3个   
1.定义在System.Windows.Forms里   
2.定义在System.Threading.Timer类里   
3.定义在System.Timers.Timer类里

System.Windows.Forms.Timer是应用于WinForm中的,他是通过Windows消息机制实现的,类似于VB或Delphi中的Timer控件,内部使用API  SetTimer实现的。他的主要缺点是计时不精确,而且必须有消息循环,Console  Application(控制台应用程式)无法使用。   
  
System.Timers.Timer和System.Threading.Timer很类似,他们是通过.NET  Thread  Pool实现的,轻量,计时精确,对应用程式、消息没有特别的需要。System.Timers.Timer还能够应用于WinForm,完全取代上面的Timer控件。他们的缺点是不支持直接的拖放,需要手工编码。

1.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Timers;
using System.Collections;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

private void Form1_Load(object sender, EventArgs e)
        {
           
              System.Timers.Timer aTimer = new System.Timers.Timer();  
              aTimer.Elapsed += new ElapsedEventHandler(theout);  //到达时间的时候执行事件;
             // 设置引发时间的时间间隔 此处设置为1秒(1000毫秒)
             aTimer.Interval = 1000;
             aTimer.AutoReset = true;//设置是执行一次(false)还是一直执行(true);
             aTimer.Enabled = true; //是否执行System.Timers.Timer.Elapsed事件;
        }
        public void theout(object source, System.Timers.ElapsedEventArgs e)
        {
            ArrayList AutoTask = new ArrayList();
            AutoTask.Add("8:30:00");
            AutoTask.Add("9:30:00");
            AutoTask.Add("10:30:00");
            AutoTask.Add("11:34:15");

for (int n = 0; n < 4; n++)
            {
                if (DateTime.Now.ToLongTimeString().Equals(AutoTask[n]))
                {
                    MessageBox.Show("现在时间是" + AutoTask[n]);
                }
            }

}

2.

C#.net 定时器

最近需要用到一个定时器,设定当 程序 到某时刻 执行某段代码。

using System;

using System.Timers;

namespace 定时器ConsoleApplication1

{

class Class1

{ 

[STAThread] 

static void Main(string[] args)

{

System.Timers.Timer aTimer = new System.Timers.Timer();

aTimer.Elapsed += new ElapsedEventHandler(TimeEvent);

// 设置引发时间的时间间隔 此处设置为1秒(1000毫秒)

aTimer.Interval = 1000;

aTimer.Enabled = true;

Console.WriteLine("按回车键结束程序";

Console.WriteLine(" 等待程序的执行......";

Console.ReadLine();

}

// 当时间发生的时候需要进行的逻辑处理等

//    在这里仅仅是一种方式,可以实现这样的方式很多.

private static void TimeEvent(object source, ElapsedEventArgs e)

{  

// 得到 hour minute second  如果等于某个值就开始执行某个程序。

int intHour   = DateTime.Now..Hour;

int intMinute = DateTime.Now.Minute;

int intSecond = DateTime.Now.Second;

// 定制时间; 比如 在10:30 :00 的时候执行某个函数

int iHour   = 10;

int iMinute = 30;

int iSecond = 00;

// 设置  每秒钟的开始执行一次

if( intSecond == iSecond )

{

Console.WriteLine("每秒钟的开始执行一次!";

}

// 设置 每个小时的30分钟开始执行

if( intMinute == iMinute && intSecond == iSecond )

{

Console.WriteLine("每个小时的30分钟开始执行一次!";

}

// 设置 每天的10:30:00开始执行程序

if( intHour == iHour && intMinute == iMinute  && intSecond == iSecond )

{

Console.WriteLine("在每天10点30分开始执行!";

}

}

}

}  
    }
}

时间: 2024-11-13 08:19:12

C#定时器的用法的相关文章

javascript中window与document对象、setInterval与setTimeout定时器的用法与区别

一.写在前面 本人前端菜鸟一枚,学习前端不久,学习过程中有很多概念.定义在使用时容易混淆,在此给向我一样刚踏入前端之门的童鞋们归纳一下.今天给大家分享一下js中window与document对象.setInterval与setTimeout定时器的用法与区别.讲得不对的地方,烦请大家指正,还望前辈.大牛多多指教! 二.window对象与document对象的用法和区别 window是全局对象,document是window对象的一个属性它也是一个对象.如图: document对象指的页面这个文档

分享Spring Scheduled定时器的用法

摘要:在coding中经常会用到定时器,指定每隔1个小时,或是每天凌晨2点执行一段代码段,若是使用java.util.Timer来做这种事情,未免重复造轮子.幸亏Spring中封装有定时器,而且非常好用,采用注解的形式配置某时某刻执行一段代码段.在之前的项目中使用过一次,下面就把代码.配置一并分享与大家. 关键词:Spring, JAVA, Scheduled, 定时器 一. 首先写一个Handler接口(“定时器Handler”),用以说明实现这一接口的类做的处理逻辑都是由定时器驱动的. 1

C++ 定时器的用法:SetTimer和Ontimer

SetTimer函数的用法 1)用WM_TIMER来设置定时器 先请看SetTimer这个API函数的原型 UINT_PTR SetTimer(                       HWND hWnd,//和定时器相关联的窗口              UINT_PTR nIDEvent,//一个非0的数字标志这个定时器              UINT uElapse,//指定时间间隔,以毫秒为单位              TIMERPROC lpTimerFunc//一般指定为n

iOS 中三种定时器的用法NSTimer、CADisplayLink、GCD

一.NSTimer 1. 创建方法 NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(action:) userInfo:nil repeats:NO]; TimerInterval : 执行之前等待的时间.比如设置成1.0,就代表1秒后执行方法 target : 需要执行方法的对象. selector : 需要执行的方法 repeats : 是否需要循环 2.

iOS 计时器三种定时器的用法NSTimer、CADisplayLink、GCD

原文:http://www.cocoachina.com/ios/20160919/17595.html 一.三种计时器 二.全局倒计时 #import "ViewController.h" @interface ViewController () { CADisplayLink * displaylinked; } @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do

iOS三种定时器的用法NSTimer、CADisplayLink、GCD

一,NSTimer //创建方式1 NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(action:) userInfo:nil repeats:NO]; [timer invalidate]; //调用创建方法后,target对象的计数器会加1,直到执行完毕,自动减1.如果是循环执行的话,就必须手动关闭,否则可以不执行释放方法. //推荐-->创建方式2 NST

关于Spring定时任务(定时器)用法

Spring定时任务的几种实现 Spring定时任务的几种实现 一.分类 从实现的技术上来分类,目前主要有三种技术(或者说有三种产品): 从作业类的继承方式来讲,可以分为两类: 从任务调度的触发时机来分,这里主要是针对作业使用的触发器,主要有以下两种: 二.用法说明 Quartz 第一种,作业类继承自特定的基类:org.springframework.scheduling.quartz.QuartzJobBean. 第二种,作业类不继承特定基类. Spring-Task 第一种:配置文件方式 第

NSTimer、CADisplayLink、GCD 三种定时器的用法 —— 昉

在软件开发过程中,我们常常需要在某个时间后执行某个方法,或者是按照某个周期一直执行某个方法.在这个时候,我们就需要用到定时器. 在iOS中有很多方法完成定时器的任务,例如 NSTimer.CADisplayLink 和 GCD都可以. 一.NSTimer 1. 创建方法 NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(action:) userInfo:nil

iOS 定时器的用法 NSTimer ------5.20

1.初始化+ (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)yesOrNo;+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelecto