您的位置:首页 > 编程语言 > Qt开发

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

2017-09-07 10:18 603 查看
出现原因:

使用了不存在的对象

数组越界了

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

比如:

顺序不能颠倒

正确:

ui->setupUi(this);

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

错误:

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

ui->setupUi(this);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐