码迷,mamicode.com
首页 > 其他好文 > 详细

countNum

时间:2016-08-16 00:29:53      阅读:643      评论:0      收藏:0      [点我收藏+]

标签:

1、m_receiveNum++

if(time()%(60*10) == 0)

{

        log(m_receiveNum);

        m_receiveNum = 0;

}

 

2、if(time%(60*10) == 0)

     {

         if(time != m_lastTime || 0 == m_lastTime)

        {

            do();

            m_lastTime = time;

        }

    }

 

3、if(0 == m_timeFlag)

    {

        m_timeFlag = time();

        log(...);

    }

    else if(m_timeFlag%(60*10) == 0)

    {

         m_timeFlag = 0;

    }

        

  

countNum

标签:

原文地址:http://www.cnblogs.com/streams/p/5774660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!