Alexander
AlexanderMarch 10, 2020, 9:26 a.m.

Ошибка c QThread, программа крашится при старте

потоки

Собственно шел по уроку 048 (кажется где перемещяют объект в поток) и столкнулся с падение программы на этапе коннектов как я понял. собственно вот код

#ifndef GUICORE_HPP
#define GUICORE_HPP

#include <QMainWindow>
#include <QMessageBox>
#include <QDialog>
#include <QDialogButtonBox>
#include <QLineEdit>
#include <QGroupBox>
#include <QFormLayout>
#include <QThread>

#include "swcore.hpp"

struct ptClientListOnForm{
    QHBoxLayout *pt;
    QLabel *laId;
    QLabel *laName;
    int id;
};

QT_BEGIN_NAMESPACE
namespace Ui { class GUICore; }
QT_END_NAMESPACE

class GUICore : public QMainWindow
{
    Q_OBJECT

public:
    GUICore(QWidget *parent = nullptr);
    ~GUICore();

    QString timeStamp();

signals:
    void setPortServ(int port);
    void setAddrServ(quint32 ipAddr);
    void startServ(QThread::Priority pr = QThread::LowPriority);
    void shutdownServer();

private slots:
    void addToPlaneText(QString msg);
    void isAlive(bool alive);
    void newConnectionClient (int id,QString name);
    void deleteConnectionClient (int id);
    void on_pushButtonStartServer_clicked();
    void on_pushButtonShutDownServer_clicked();
    void on_pushButtonExit_clicked();

private:
    Ui::GUICore *ui;
    SWCore *swc;
    QThread *sysThread;
    ptClientListOnForm ptCl;
    QVector <ptClientListOnForm> arrPtCl;
};
#endif // GUICORE_HPP
///это хедор

и кусок где происходит краш

GUICore::GUICore(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::GUICore)
{
    ui->setupUi(this);
    swc = new SWCore;
    connect(this,&GUICore::startServ,sysThread,&QThread::start);
    connect(sysThread,&QThread::start,swc,&SWCore::slotStartServer);
    connect(sysThread,&QThread::terminate,swc,&SWCore::slotStopServer);
    swc->moveToThread(sysThread);
}

Линка на весь проект если поможет

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

2
Evgenii Legotckoi
  • March 10, 2020, 9:37 a.m.
  • (edited)
  • The answer was marked as a solution.

В уроке 048 QThread объект существует в стеке класса, а вы создаёте в куче. То есть в уроке объект существует перед коннектом, а в вашем случае протухший указатель, который вместо объекта содержит мусор.

Так на стеке

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private slots:

private:
    QThread thread_1;       // Объект создаётся в стеке класса
};

Так в куче (heap), требуется создавать объект через оператор new, и соответственно контролировать удаление, чтобы не было утечек памяти

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private slots:

private:
    QThread* thread_1;       // Объект создаётся в стеке класса
};

Создаём

GUICore::GUICore(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::GUICore)
{
    ui->setupUi(this);
    swc = new SWCore;
    sysThread = new QThread();
    connect(this,&GUICore::startServ,sysThread,&QThread::start);
    connect(sysThread,&QThread::start,swc,&SWCore::slotStartServer);
    connect(sysThread,&QThread::terminate,swc,&SWCore::slotStopServer);
    swc->moveToThread(sysThread);
}

И нужно будет в деструкторе потом удалять

GUICore::~GUICore()
{
    sysThread->deleteLater();
}

    Alexander
    • March 10, 2020, 10:03 a.m.

    Мда проглядел z что не создал поток( моя вина

      Comments

      Only authorized users can post comments.
      Please, Log in or Sign up
      AD

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:50points,
      • Rating points-4
      m

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:80points,
      • Rating points4
      m

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:20points,
      • Rating points-10
      Last comments
      i
      innorwallNov. 14, 2024, 11:07 p.m.
      Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
      i
      innorwallNov. 14, 2024, 10:42 p.m.
      How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
      i
      innorwallNov. 14, 2024, 8:09 p.m.
      Qt/C++ - Tutorial 068. Hello World using the CMAKE build system in CLion ditropan pristiq dosing With the Yankees leading, 4 3, Rivera jogged in from the bullpen to a standing ovation as he prepared for his final appearance in Chicago buy priligy pakistan
      i
      innorwallNov. 14, 2024, 3:05 p.m.
      EVILEG-CORE. Using Google reCAPTCHA 2001; 98 29 34 priligy buy
      i
      innorwallNov. 14, 2024, 3 p.m.
      PyQt5 - Lesson 007. Works with QML QtQuick (Signals and slots) priligy 30mg Am J Obstet Gynecol 171 1488 505
      Now discuss on the forum
      i
      innorwallNov. 14, 2024, 2:39 p.m.
      добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
      i
      innorwallNov. 11, 2024, 9:55 p.m.
      Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
      9
      9AnonimOct. 25, 2024, 7:10 p.m.
      Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

      Follow us in social networks