Heim  >  Fragen und Antworten  >  Hauptteil

c++ - Qt Connect-Funktion meldet Fehler?


#include <QObject>
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "addDialog.h"
#include <QMessageBox>

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{

ui->setupUi(this);
setFixedSize(this->width(), this->height());
addDialog addD();
editDialog editD();
QObject::connect(&editD, &editDialog::sendData,
                 this, &MainWindow::get_data_from_edit);
    QObject::connect(&addD, &addDialog::sendData,
                     this, &MainWindow::get_data_from_add);
}

Beide Verbindungen haben Fehler gemeldet

error: no matching function for call to 'MainWindow::connect(editDialog (*)(), void (editDialog::*)(QString), MainWindow*, void (MainWindow::*)(QString))'
                      this, &MainWindow::get_data_from_edit);
                                                           ^
In file included from D:\QT.9\mingw53_32\include\QtCore/QObject:1:0,
                 from mainwindow.cpp:3:

error: no type named 'type' in 'struct std::enable_if<false, QMetaObject::Connection>'

Alle verwendeten Klassen erben QObject und enthalten Q_OBJECT

Bei Verwendung der alten Syntax wird immer noch ein Fehler gemeldet

高洛峰高洛峰2701 Tage vor1304

Antworte allen(2)Ich werde antworten

  • 漂亮男人

    漂亮男人2017-06-19 09:09:26

    addDialog addD();
    editDialog editD();
    这两句是实例2个对象嘛?把()去掉试试。

    Antwort
    0
  • 某草草

    某草草2017-06-19 09:09:26

    楼主,你把MainWindow::get_data_from_edit和MainWindow::get_data_from_add的方法声明贴出来。

    Antwort
    0
  • StornierenAntwort