定时器事件和随机数(示例代码)

1、QTimeerEvent类用来描述一个定时器事件。对于一个QObject的子类,只需要使用ingQobject:: startTimer(int interval)函数就可以开启一个定时器,这个函数需要输入一个以毫秒为单位的证书作为参数来表明设定的事件,函数返回一个整形的标号来代表这个定时器。当这个定时器溢出时候,就可以在timerEvent()函数中进行需要的操作

id1 = startTimer(1000);  

void Widget::timerEvent(QTimerEvent*event)

{

    if (event->timerId() == id1){       // 判断是哪个定时器

        qDebug() << "timer1";

    }

    else if (event->timerId() == id2) {

        qDebug() << "timer2";

    }

    else {

扫描二维码关注公众号,回复: 35040 查看本文章

        qDebug() << "timer3";

    }

}

2、QTimer类,实现一个定时器,他提供更高层次的编程接口,比如信号和槽,还可以设置值运行一次的定时器。(走信号槽)

 QTimer*timer = new QTimer(this);           //创建一个新的定时器

    // 关联定时器的溢出信号到槽上

    connect(timer, &QTimer::timeout, this,&Widget::timerUpdate);

    timer->start(1000);                         // 设置溢出时间为1秒,并启动定时器

3、关于随机数,QT是通过qrand和qsrand来实现的

  int rand = qrand() % 300;             // 产生 300 以内的正整数


 
 
//.h文件
#ifndef WIDGET_H #define WIDGET_H #include <QWidget> namespace Ui { class Widget; } class Widget : public QWidget { Q_OBJECT public: explicit Widget(QWidget *parent = 0); ~Widget(); private: Ui::Widget *ui; int id1, id2, id3; protected: void timerEvent(QTimerEvent *event); private slots: void timerUpdate(); }; #endif // WIDGET_H
 
 
//.cpp
#include "widget.h" #include "ui_widget.h" #include <QDebug> #include <QTimer> #include <QTime> Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) { ui->setupUi(this); id1 = startTimer(1000); // 开启一个1秒定时器,返回其ID id2 = startTimer(1500); id3 = startTimer(2200); QTimer *timer = new QTimer(this); // 创建一个新的定时器 // 关联定时器的溢出信号到槽上 connect(timer, &QTimer::timeout, this, &Widget::timerUpdate); timer->start(1000); // 设置溢出时间为1秒,并启动定时器 qsrand(QTime(0, 0, 0).secsTo(QTime::currentTime())); QTimer::singleShot(10000, this, &Widget::close); } Widget::~Widget() { delete ui; } void Widget::timerEvent(QTimerEvent *event) { if (event->timerId() == id1) { // 判断是哪个定时器 qDebug() << "timer1"; } else if (event->timerId() == id2) { qDebug() << "timer2"; } else if (event->timerId() == id3){ qDebug() << "timer3"; }else{ qDebug()<<"time4"; } } void Widget::timerUpdate() // 定时器溢出处理 { QTime time = QTime::currentTime(); // 获取当前时间 QString text = time.toString("hh:mm"); // 转换为字符串 if((time.second() % 2) == 0) text[2]=' '; // 每隔一秒就将“:”显示为空格 ui->lcdNumber->display(text); int rand = qrand() % 300; // 产生300以内的正整数 ui->lcdNumber->move(rand, rand); }


猜你喜欢

转载自blog.csdn.net/qcz_nuist/article/details/80003243