using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { AutoResetEvent aRE = new AutoResetEvent(true); bool state = aRE.WaitOne(1000, true); //等待一秒後,執行下面一行 Console.WriteLine("After First State " + state); aRE.Set(); //重新設定訊號 state = aRE.WaitOne(5000, true); if (state) { //在五秒內取得訊號 } else { //等於或超過五秒,沒有收到訊號 } Console.WriteLine("After Second State" + state); } } }
2010年5月15日 星期六
AutoResetEvent範例
嗨,大家好!我是一位資訊人、畫畫人、科技人和行銷人。定位自己為網路觀察家,永遠保持好奇心與熱情,學習跨領域新事物,希望最終能成為一個全方位的人。喜歡探索新技術和創意,並將其應用於工作和生活中。也喜歡畫畫、旅行、閱讀和寫作。希望我的部落格可以為您帶來啟發和樂趣,並與您分享我的經驗和見解。謝謝您的訪問,期待與您交流!
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言