qt项目中未解析的外部符号

时间:2016-06-12 14:46:59

标签: c++ qt unresolved-external

好的,所以花30分钟左右看看这个问题的常见原因,我看不出有什么问题。

我得到的错误是未解析的外部符号。有问题的符号是一个名为AdventureDocs的类。标题如下。

#ifndef ADVENTUREDOCS_H
#define ADVENTUREDOCS_H

#include <QWidget>

class AdventureDocs : public QWidget
{
    Q_OBJECT
public:
    AdventureDocs(QObject *parent);
};

#endif // ADVENTUREDOCS_H

和cpp

#include "adventuredocs.h"
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QPushButton>
#include <QLabel>
#include <QTabWidget>

AdventureDocs::AdventureDocs(QObject *parent): QWidget(parent)
{
    QHBoxLayout *hLayout = 0;
    QVBoxLayout *vLayout = 0;
    QPushButton *button = 0;
    QLabel *label = 0;

    hLayout = new QHBoxLayout();
    Q_ASSERT(hLayout);

    vLayout = new QVBoxLayout();
    Q_ASSERT(vLayout);

    // Set the layout to the widget
    setLayout(hLayout);
    hLayout->addLayout(vLayout);

    // Draw widgets on main page.
    label = new QLabel(hLayout);
    Q_ASSERT(label);
    hLayout->addWidget(label);

    label->setText("Adventure Docs");
}

这是一个类不是库或类似于我在qt creator中添加新类来添加它的类,并且将头和cpp添加到项目文件中,如下所示。

#-------------------------------------------------
#
# Project created by QtCreator 2016-06-12T11:06:47
#
#-------------------------------------------------

QT       += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = AdventureDocs
TEMPLATE = app


SOURCES += main.cpp\
        mainwindow.cpp \
    adventuredocs.cpp

HEADERS  += mainwindow.h \
    adventuredocs.h

FORMS    += mainwindow.ui

最后在mainwindow .cpp中我创建了一个AdventureDocs对象,我得到了错误。

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QPushButton>
#include "adventuredocs.h"
MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    AdventureDocs *main = 0;

    main =  new AdventureDocs(this);
    if (main != 0)
    {
        setCentralWidget(main);
    }
}

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

有人可以指出明显缺失的出血感谢。

1 个答案:

答案 0 :(得分:0)

现在整理出来。是我傻了,没有重新运行qmake