色婷婷AⅤ一区二区三区|亚洲精品第一国产综合亚AV|久久精品官方网视频|日本28视频香蕉

          新聞中心

          EEPW首頁 > 消費(fèi)電子 > 設(shè)計(jì)應(yīng)用 > Timer定時(shí)器的設(shè)計(jì)方法

          Timer定時(shí)器的設(shè)計(jì)方法

          作者: 時(shí)間:2018-09-04 來源:網(wǎng)絡(luò) 收藏

          本文引用地址:http://cafeforensic.com/article/201809/388353.htm

            if (ExcuteUpdate())

            {

            autoEvent.Set();

            }

            }

            /**////

            /// 更新

            ///

            ///

            private bool ExcuteUpdate()

            {

            try

            {

            //應(yīng)該從數(shù)據(jù)庫獲得Paper對象的集合,這里簡略

            //ListpaperList = getPaperList();

            ListpaperList = new List();

            foreach (Paper item in paperList)

            {

            if (item.EndTime = DateTime.Now)

            {

            if (item.Status == Paper.StatusOfNormal)

            {

            item.Status = Paper.StatusOfTerminate;

            }

            }

            }

            /**/////執(zhí)行數(shù)據(jù)更新,這里省略

            return true;

            }

            catch

            {

            return false;

            }

            }

            }

            這是問卷的實(shí)體類,只是簡單的列出必要的屬性。

            Paper實(shí)體類

            /**////

            /// 實(shí)體類

            ///

            public class Paper

            {

            /**////

            /// 終止時(shí)間

            ///

            public DateTime EndTime;

            /**////

            /// 狀態(tài)

            ///

            public int Status;

            /**////

            /// 正常

            ///

            public const int StatusOfNormal = 1;

            /**////

            /// 終止

            ///

            public const int StatusOfTerminate = 2;

            /**////

            ///

            ///

            ///

            ///

            public Paper(int status, DateTime endTime)

            {

            Status = status;

            EndTime = endTime;

            }

            }


          上一頁 1 2 3 下一頁

          關(guān)鍵詞:

          評論


          相關(guān)推薦

          技術(shù)專區(qū)

          關(guān)閉