使用QT时对构造函数的未定义引用

Undefined reference to constructor when using QT

本文关键字:未定义 引用 构造函数 QT 使用      更新时间:2023-10-16

我是C 编程中的新手,也是QT。

我想测试QT插槽和信号,看看它们的工作原理。我有一个名为myclass.h的标头文件,该文件具有以下代码:

#ifndef MYCLASS_H
#define MYCLASS_H
#include <QObject>
#include <QString>
class myclass: public QObject
{
   Q_OBJECT
   public:
     myclass(const QString &text, QObject *parent=0);
     const QString& text() const;
     int getlengthoftext() const;
   public slots:
     void settext(const QString &text);
   signals:
     void changedtext(const QString&);
     private:
     QString m_text;
};

和带有以下代码的class_mine名称的文件:

#include "myclass.h"
#include <QObject>
#include <QString>
void myclass::settext(const QString &text)
{
     if (m_text==text)
        return;
     m_text =text;
     emit changedtext(m_text);
} 
#endif

,在我的主文件中,我有一个:

#include "mainwindow.h"
#include <QApplication>
#include "myclass.h"
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    // MainWindow w;
    // w.show();
    QObject parent;
    myclass *a1 , *b , *c;
    a1=new myclass("foo" , &parent);
    b=new myclass("bar" , &parent);
    c=new myclass("baz" , &parent);
    QObject::connect(a1,SIGNAL(changedtext(const QString&)),
    b,SLOT(settext(const QString&)));
    QObject::connect(b,SIGNAL(changedtext(const QString&)),
    c,SLOT(settext(const QString&)));
    QObject::connect(c,SIGNAL(changedtext(const QString&)),
    b,SLOT(settext(const QString&)));
    b->settext("text");
    return a.exec();
}

我不知道为什么要遇到此错误:

main.cpp:13:错误: 对" myClass :: myClass(qString const&amp;,qobject*(的不定定义的引用*('

在myclass.h

中定义您的体制
myclass(const QString &text, QObject *parent=0) { /* your code here */ };

或myclass.cpp

myclass::myclass(const QString &text, QObject *parent) { /* your code here */ };