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

时间:2017-04-28 11:47:41

标签: c++ qt class signals-slots

我是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 *)'

1 个答案:

答案 0 :(得分:2)

在myclass.h中定义你的constuctor

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

或myclass.cpp

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