我在QTimer
课程中有MainWindow
,但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";
}
答案 0 :(得分: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
Implentation:
#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宏,包括必需的类。这个问题可能来自你在问题中没有表现出来的东西。
答案 1 :(得分: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;
};