mainwindow.cpp:27:18: error: return type of out-of-line definition of 'MainWindow::selectFile' differs from that in the declaration mainwindow.h:22:9: note: previous declaration is here
时间: 2023-12-20 14:06:23 浏览: 340
根据你提供的错误信息,函数 `MainWindow::selectFile()` 的定义与其声明的返回类型不一致。
在你的 `mainwindow.h` 文件中,`MainWindow::selectFile()` 函数的声明的返回类型是 `int`,但是在 `mainwindow.cpp` 文件中的函数定义中,返回类型被修改为了 `bool`。
要修正这个问题,你需要确保函数的声明和定义的返回类型是一致的。根据你在 `selectFile()` 函数中的实现,返回类型应该是 `bool`。
将 `mainwindow.h` 文件中的函数声明修改为:
```cpp
bool selectFile();
```
修正后的代码如下所示:
**mainwindow.h**
```cpp
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
bool selectFile();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
```
**mainwindow.cpp**
```cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
QPushButton *selectButton = new QPushButton("选择文件", this);
connect(selectButton, &QPushButton::clicked, this, &MainWindow::selectFile);
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(selectButton);
QWidget *centralWidget = new QWidget(this);
centralWidget->setLayout(layout);
setCentralWidget(centralWidget);
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
bool MainWindow::selectFile()
{
QString dir = QFileDialog::getOpenFileName(this, "选择文件", "", "DWG Files (*.dwg)");
if (dir.isEmpty()) {
qDebug() << "error: File import failure!";
return false;
} else {
// 进行导入操作
// ...
return true;
}
}
```
请确保在 `mainwindow.cpp` 文件中包含了 `#include "mainwindow.h"` 的代码行。这样可以确保函数的定义与声明是一致的。
阅读全文