ASP.NET 定時器回調方法的重入

來源:互聯網
上載者:User
話不多說,請看代碼:

using System;using System.Collections.Generic;using System.Text;namespace NET.MST.Sixth.Reenter{  class Reenter  {    //用來造成線程同步問題的靜態成員    private static int TestInt1=0;    private static int TestInt2 = 0;    private static object locko = new object();    static void Main(string[] args)    {      Console.WriteLine("System.Timers.Timer 回調方法重入測試:");      TimersTimerReenter();      //這裡確保已經開始的回調方法有機會結束      System.Threading.Thread.Sleep(2 * 1000);      Console.WriteLine("System.Threading.Timer 回調方法重入測試:");      ThreadingTimerReenter();      Console.Read();    }    /// <summary>    /// 展示System.Timers.Timer的回調方法重入    /// </summary>    static void TimersTimerReenter()    {      System.Timers.Timer timer = new System.Timers.Timer();      timer.Interval = 100;    //100毫秒      timer.Elapsed += TimersTimerHandler;      timer.Start();      System.Threading.Thread.Sleep(2 * 1000); //運行2秒      timer.Stop();    }    /// <summary>    /// 展示System.Threading.Timer的回調方法重入    /// </summary>    static void ThreadingTimerReenter()    {      //100毫秒      using (System.Threading.Timer timer = new System.Threading.Timer       (new System.Threading.TimerCallback(ThreadingTimerHandler), null, 0, 100))      {        System.Threading.Thread.Sleep(2 * 1000); //運行2秒      }    }    /// <summary>    /// System.Timers.Timer的回調方法    /// </summary>    /// <param name="sender"></param>    /// <param name="args"></param>    private static void TimersTimerHandler(object sender,EventArgs args)    {      lock (locko)      {        Console.WriteLine("測試整數:" + TestInt1.ToString());        //睡眠10秒,保證方法重入        System.Threading.Thread.Sleep(300);        TestInt1++;        Console.WriteLine("自增1後測試整數:" + TestInt1.ToString());      }    }    /// <summary>    /// System.Threading.Timer的回調方法    /// </summary>    /// <param name="state"></param>    private static void ThreadingTimerHandler(object state)    {      lock (locko)      {        Console.WriteLine("測試整數:" + TestInt2.ToString());        //睡眠10秒,保證方法重入        System.Threading.Thread.Sleep(300);        TestInt2++;        Console.WriteLine("自增1後測試整數:" + TestInt2.ToString());      }    }  }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.