声明 class 类型的 QVector 时出错

Error while declaring QVector of class type

在 Qt 中声明 class 类型的 QVector 时出错。

错误:"incomplete type is not allowed"

我不明白是什么导致了这个错误。

如果我在 main.cpp 中#include "storage.h" 并声明一个 class 存储的 Qvector 它工作正常但是当我在波形 class 中做同样的事情时它报告一个错误。

我已经尝试在波形 class 中向前声明存储 class 但仍然出现相同的错误。

有帮助吗??

main.cpp

#include "test_subject_02.h"
#include <QtGui/QApplication>


int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    TEST_SUBJECT_02 w;
    w.show();
    return a.exec();
}

test_subject_02.h

#ifndef TEST_SUBJECT_02_H
#define TEST_SUBJECT_02_H

#include <QtGui/QMainWindow>
#include "ui_test_subject_02.h"
#include"waveform.h"
#include "storage.h"


class TEST_SUBJECT_02 : public QMainWindow
{
    Q_OBJECT

public:
    TEST_SUBJECT_02(QWidget *parent = 0, Qt::WFlags flags = 0);
    waveform *wv;
    ~TEST_SUBJECT_02();

private:
    Ui::TEST_SUBJECT_02Class ui;
};

#endif // TEST_SUBJECT_02_H

test_subject_02.cpp

#include "test_subject_02.h"

TEST_SUBJECT_02::TEST_SUBJECT_02(QWidget *parent, Qt::WFlags flags)
    : QMainWindow(parent, flags)
{
    ui.setupUi(this);
    QVector<storage> ser; //works fine here
    wv->readfile("e:/testing2/result/3/abc.cur");

}

TEST_SUBJECT_02::~TEST_SUBJECT_02()
{

}

waveform.h

#ifndef WAVEFORM_H
#define WAVEFORM_H

#include "storage.h"
#include <QObject>

class waveform : public QObject
{
    Q_OBJECT


public:
    waveform(QObject *parent=0);
    void readfile(QString);

    QVector <storage> myvector ; // incomplete type is not allowed
    ~waveform();

private:

};

#endif // WAVEFORM_H

waveform.cpp

#include "waveform.h"

waveform::waveform(QObject *parent)
    : QObject(parent)
{

}

void waveform::readfile(QString file)
{  
    QVector<storage> sw; //again error incomplete type is not allowed

}

waveform::~waveform()
{

}

storage.h

#ifndef STORAGE_H
#define STORAGE_H

#include <QObject>

class storage : public QObject
{
    Q_OBJECT

public:
    storage(QObject *parent);
    storage();
    storage(QString,QString);
    ~storage();

private:
    QString x;
    QString y;

};

#endif // STORAGE_H

storage.cpp

#include "storage.h"

storage::storage(QObject *parent)
    : QObject(parent)
{

}

storage::storage(QString xcord,QString ycord)
{
    x=xcord;
    y=ycord;

}

storage::storage()
{

}

storage::~storage()
{

}

您需要在必要的文件中明确包含 QVector(我相信 waveform.h),因为 QT 使用了很多前向声明,而它们在 [= 中显示为正确的 类 14=],但如果文件中未包含正确的定义,它们将无法编译。