想学好QT 2019-05-30 21:50 采纳率: 0%
浏览 765
已采纳

线程emit send(int)提示 error: undefined reference to `MyThread::send(int)'

若定义void MyThread::send(int)
{
}

编译时提示No such signal QThread::send(int)

QThread类头文件

#ifndef MYTHREAD_H
#define MYTHREAD_H

#include <QThread>

class MyThread : public QThread
{
signals:
    void send(int);

public:
    MyThread();

protected:
    void run();
};

#endif // MYTHREAD_H

QThread .cpp文件

#include "mythread.h"

MyThread::MyThread()
{

}

void MyThread::run()
{
    int i = 9;
    emit send(i);
}

void MyThread::send(int)
{

}

连接线程信号和主线程的槽函数

#include "widget.h"
#include "ui_widget.h"

Widget::Widget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Widget)
{
    ui->setupUi(this);
    m_thread = new MyThread;
    connect(m_thread,SIGNAL(send(int)),this,SLOT(UpdateSlot()));

}
  • 写回答

2条回答 默认 最新

  • qtchen_1988 2019-05-31 17:00
    关注

    1.在MyThread类添加 Q_OBJECT ;
    2.再删除void MyThread::send(int)
    {
    } (信号函数是不需要实现的)
    3.重新编译或者删掉编译出来的文件夹重新运行,即可;亲测了可以

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 MATLAB代码补全插值
  • ¥15 Typegoose 中如何使用 arrayFilters 筛选并更新深度嵌套的子文档数组信息
  • ¥15 前后端分离的学习疑问?
  • ¥15 stata实证代码答疑
  • ¥50 husky+jaco2实现在gazebo与rviz中联合仿真
  • ¥15 dpabi预处理报错:Error using y_ExtractROISignal (line 251)
  • ¥15 在虚拟机中配置flume,无法将slave1节点的文件采集到master节点中
  • ¥15 husky+kinova jaco2 仿真
  • ¥15 zigbee终端设备入网失败
  • ¥15 金融监管系统怎么对7+4机构进行监管的