您提供的代码是有效的。我只是在一个空的默认 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 宏,你包括了必需的类。问题可能来自您未在问题中显示的内容。