我是靠谱客的博主 安静星星,这篇文章主要介绍# 关于Qt程序异常结束, The process was ended forcefully问题关于Qt程序异常结束, The process was ended forcefully问题,现在分享给大家,希望可以做个参考。

Qt学习记录

关于Qt程序异常结束, The process was ended forcefully问题

今天在编写Qt信号槽函数的过程中,出现了:
14:38:42: 程序异常结束。
14:38:42: The process was ended forcefully.
14:38:42: H:Qtprojectday1128build-SignalAndSlot_01-Desktop_Qt_5_12_9_MSVC2017_64bit-DebugdebugSignalAndSlot_01.exe crashed.的错误类型,程序可以正常编译通过,但是当点击对应事件触发信号的时候,程序就会crase,
找了好久没找到原因,最后经过调试发现,原来是在使用构造函数指定父对象的过程中,使用了如下方式的原因:
QPushButton *p1 = new QPushButton(this);
QPushButton *p2 = new QPushButton(this);
QPushButton *p3 = new QPushButton(this);
QPushButton *p4 = new QPushButton(this);
QPushButton *p5 = new QPushButton(this);
QLabel *label_01 = new QLabel(this);
QLabel *label_02 = new QLabel(this);
QLabel *label_03 = new QLabel(this);
QLabel *label_04 = new QLabel(this);
修改为以下构造函数传参的形式之后,没有再出现crase
p1 = new QPushButton(this);
p2 = new QPushButton(this);
p3 = new QPushButton(this);
p4 = new QPushButton(this);
p5 = new QPushButton(this);
label_01 = new QLabel(this);
label_02 = new QLabel(this);
label_03 = new QLabel(this);
label_04 = new QLabel(this);
信号槽机制得以正常运行

最后

以上就是安静星星最近收集整理的关于# 关于Qt程序异常结束, The process was ended forcefully问题关于Qt程序异常结束, The process was ended forcefully问题的全部内容,更多相关#内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(117)

评论列表共有 0 条评论

立即
投稿
返回
顶部