intQObject::startTimer(int interval, Qt::TimerType timerType = Qt::CoarseTimer)// 函数原型 // 说明 Starts a timer and returns a timer identifier, or returns zero if it could not start a timer. A timer event will occur every interval milliseconds until killTimer() is called. If interval is 0, then the timer event occurs once every time there are no more window system events to process. The virtualtimerEvent() function is called with the QTimerEvent event parameter class when a timer event occurs. Reimplement this function to get timer events. If multiple timers are running, the QTimerEvent::timerId() can be used to find out which timer was activated.