码迷,mamicode.com
首页 > 其他好文 > 详细

Qt error--Error - RtlWerpReportException failed with status code :-1073741823. Will try to launch the process directly

时间:2020-04-17 00:26:32      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:idt   etc   cep   get   let   erro   exception   status   原因   

出现原因:

使用了不存在的兑现

数组越界

用delete释放未分配的内存空间,或者超过一次释放同个内存。

 

比如:

顺序不能颠倒

正确:

ui->setupUi(this);

ui->tableWidget->setColumnWidth(0, 100);

错误:

ui->tableWidget->setColumnWidth(0, 100);

ui->setupUi(this);

 

 

Qt error--Error - RtlWerpReportException failed with status code :-1073741823. Will try to launch the process directly

标签:idt   etc   cep   get   let   erro   exception   status   原因   

原文地址:https://www.cnblogs.com/sggggr/p/12716759.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!