2

我有一个QTimerMainWindow课堂上,但update插槽没有被调用。我是 QT 的新手。我不知道会是什么。connect()返回true,我既没有收到来自 QT 创建者的消息窗口的警告,也没有收到运行时错误。它只是行不通。

void MainWindow::on_startBtn_clicked()
{
    QTimer *timer = new QTimer(this);
    qDebug() << connect(timer, SIGNAL(timeout()), this, SLOT(update()));
    timer->start(500);
}

void MainWindow::update()
{
    qDebug() << "update() called";
}
4

2 回答 2

4

您提供的代码是有效的。我只是在一个空的默认 GUI Qt 项目中尝试了它。

标题:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private slots:
    void on_startBtn_clicked();
    void update();

private:
    Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

实施:

#include "mainwindow.h"
#include "ui_mainwindow.h"

#include <QTimer>
#include <QDebug>

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
}

MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::on_startBtn_clicked()
{
    QTimer *timer = new QTimer(this);
    qDebug() << connect(timer, SIGNAL(timeout()), this, SLOT(update()));
    timer->start(500);
}

void MainWindow::update()
{
    qDebug() << "update() called";
}

结果:

Démarrage de E:\projects\playground\build-qt_gui_test-Desktop_Qt_5_5_0_MSVC2013_64bit-Debug\debug\qt_gui_test.exe...
true
update() called
update() called
update() called
update() called
update() called
update() called
update() called
E:\projects\playground\build-qt_gui_test-Desktop_Qt_5_5_0_MSVC2013_64bit-Debug\debug\qt_gui_test.exe s'est terminé avec le code 0

请确认 update() 方法在您的标头中声明为插槽。检查你没有忘记 Q_OBJECT 宏,你包括了必需的类。问题可能来自您未在问题中显示的内容。

于 2015-09-27T15:47:20.727 回答
1

我和你有同样的问题。只需确保您调用的函数( myUpdate() )位于头文件的插槽声明中

例如:

class MainWindow : public QMainWindow
{
    Q_OBJECT


public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

    void showEvent(QShowEvent *event);

    //void myUpdate();  // <------          NEVER PUT INHERE
public slots:           // <------          MUST BE IN HERE
    void myUpdate();    // <------
private:
    Ui::MainWindow *ui;
};
于 2018-10-29T05:06:14.650 回答