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
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!
AD
- Akiv Doros
- Nov. 12, 2024, 1:58 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 26, 2024, 11:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 26, 2024, 11:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
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
EVILEG-CORE. Using Google reCAPTCHA 2001; 98 29 34 priligy buy
PyQt5 - Lesson 007. Works with QML QtQuick (Signals and slots) priligy 30mg Am J Obstet Gynecol 171 1488 505
Now discuss on the forum
добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
Всё ещё разбираюсь с кешем. 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
IscanderCheNov. 1, 2024, 1:43 a.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
ИМ
Реализация навигации по разделам Спасибо Евгений!
Игорь МаксимовOct. 3, 2024, 2:05 p.m.
В уроке 048 QThread объект существует в стеке класса, а вы создаёте в куче. То есть в уроке объект существует перед коннектом, а в вашем случае протухший указатель, который вместо объекта содержит мусор.
Так на стеке
Так в куче (heap), требуется создавать объект через оператор new, и соответственно контролировать удаление, чтобы не было утечек памяти
Создаём
И нужно будет в деструкторе потом удалять
Мда проглядел z что не создал поток( моя вина