最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時間:2017年02月20日 09:32:26   作者:brainmao  
本文主要介紹了ASP.NET 定時器回調方法的重入的相關知識。具有很好的參考價值,下面跟著小編一起來看下吧

話不多說,請看代碼:

using System;
using System.Collections.Generic;
using System.Text;
namespace NET.MST.Sixth.Reenter
{
  class Reenter
  {
    //用來造成線程同步問題的靜態(tài)成員
    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("測試整數(shù):" + TestInt1.ToString());
        //睡眠10秒,保證方法重入
        System.Threading.Thread.Sleep(300);
        TestInt1++;
        Console.WriteLine("自增1后測試整數(shù):" + TestInt1.ToString());
      }
    }
    /// <summary>
    /// System.Threading.Timer的回調方法
    /// </summary>
    /// <param name="state"></param>
    private static void ThreadingTimerHandler(object state)
    {
      lock (locko)
      {
        Console.WriteLine("測試整數(shù):" + TestInt2.ToString());
        //睡眠10秒,保證方法重入
        System.Threading.Thread.Sleep(300);
        TestInt2++;
        Console.WriteLine("自增1后測試整數(shù):" + TestInt2.ToString());
      }
    }
  }
}

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持腳本之家!

相關文章

最新評論

崇信县| 博兴县| 宁化县| 彭州市| 孝义市| 侯马市| 化德县| 临猗县| 柏乡县| 阿克| 垦利县| 阳朔县| 拉萨市| 江安县| 湟源县| 新闻| 库车县| 哈巴河县| 扶余县| 广平县| 大姚县| 新郑市| 凌海市| 宁蒗| 青神县| 水城县| 荥阳市| 静宁县| 绥棱县| 华阴市| 博爱县| 哈巴河县| 赣州市| 都兰县| 姜堰市| 札达县| 阜宁县| 西平县| 奇台县| 宝应县| 武宁县|