QBasicTimer学习笔记
1. 介绍
1.1 特点
1.2 类组成
class Q_CORE_EXPORT QBasicTimer
{
int id;
public:
inline QBasicTimer() : id(0) {}
inline ~QBasicTimer() { if (id) stop(); }
inline bool isActive() const { return id != 0; }
inline int timerId() const { return id; }
void start(int msec, QObject *obj);
void start(int msec, Qt::TimerType timerType, QObject *obj);
void stop();
};
UML类图
成员介绍
成员 | 备注 |
---|---|
QBasicTimer::QBasicTimer() | 类构造函数 |
QBasicTimer::~QBasicTimer() | 类析构函数 |
bool QBasicTimer::isActive() const | true:定时器处于工作状态 false:定时器不处于工作状态 |
void QBasicTimer::start(int msec, QObject *object) | 启动定时器 msec:定时时间(单位:毫秒) *object:接收定时器事件的对象 |
void QBasicTimer::start(int msec, Qt::TimerType timerType, QObject *obj) | 启动定时器 msec:定时时间(单位:毫秒) timerType: 0:Qt::PreciseTimer 1:Qt::CoarseTimer 2:Qt::VeryCoarseTimer *object:接收定时器事件的对象 |
void QBasicTimer::stop() | 停止定时器 |
int QBasicTimer::timerId() const | 获取定时器ID |
1.3 Qt::TimerType 介绍
名称 | 值 | 备注 |
---|---|---|
Qt::PreciseTimer | 0 | 精确计时精度(毫秒级) |
Qt::CoarseTimer | 1 | 粗略计时精度(误差在5%以内) |
Qt::VeryCoarseTimer | 2 | 非常粗略计时精度 |
2. 示例代码
头文件
#ifndef NEW_CLASS_H
#define NEW_CLASS_H
#include <QObject>
#include <QBasicTimer>
#include <QDebug>
class NewClass : public QObject
{
public:
NewClass();
~NewClass();
protected:
//! 重载定时器处理函数
void timerEvent(QTimerEvent *event);
private:
};
#endif
源文件
#include "newClass.h"
NewClass::NewClass()
{
//! param1: 定时时间
//! param2: 定时器类型
//! param3: 对象指针
this->Timer.start(1000, Qt::PreciseTimer, this);
}
NewClass::~NewClass()
{
//! 停止定时器
this->Timer.stop();
}
//! 定时器处理函数
void NewClass::timerEvent(QTimerEvent *event)
{
qDebug() << "Test! \r\n";
}