我是靠谱客的博主 安静星星,最近开发中收集的这篇文章主要介绍# 关于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问题的全部内容,希望文章能够帮你解决# 关于Qt程序异常结束, The process was ended forcefully问题关于Qt程序异常结束, The process was ended forcefully问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部