-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.json
24 lines (24 loc) · 8.33 KB
/
feed.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"version": "https://jsonfeed.org/version/1",
"title": "Hexo",
"description": "",
"home_page_url": "http://example.com",
"items": [
{
"id": "http://example.com/2021/08/21/QT%E5%85%B3%E9%97%AD%E7%AA%97%E5%8F%A3%E6%97%B6%E6%98%BE%E7%A4%BA%E7%A8%8B%E5%BA%8F%E5%BC%82%E5%B8%B8%E7%BB%93%E6%9D%9F/",
"url": "http://example.com/2021/08/21/QT%E5%85%B3%E9%97%AD%E7%AA%97%E5%8F%A3%E6%97%B6%E6%98%BE%E7%A4%BA%E7%A8%8B%E5%BA%8F%E5%BC%82%E5%B8%B8%E7%BB%93%E6%9D%9F/",
"title": "",
"date_published": "2021-08-21T04:42:31.278Z",
"content_html": "<h1 id=\"qt关闭窗口时显示程序异常结束解决办法\"><a class=\"markdownIt-Anchor\" href=\"#qt关闭窗口时显示程序异常结束解决办法\">#</a> QT 关闭窗口时显示程序 “异常结束” 解决办法</h1>\n<h2 id=\"1问题概述\"><a class=\"markdownIt-Anchor\" href=\"#1问题概述\">#</a> 1. 问题概述</h2>\n<p>使用 QT 运行程序时,程序正常运行,但在关闭窗口后,程序输出窗口发现程序并没有立即关闭,而是等待一会儿后打印输出 “程序异常结束 “,若下图所示:</p>\n<p><img src=\"C:%5CUsers%5CZWP%5CDesktop%5C%E5%8D%9A%E5%AE%A2%5C%E7%A8%8B%E5%BA%8F%E5%BC%82%E5%B8%B8%E7%BB%93%E6%9D%9F.png\" alt=\"程序异常结束\"></p>\n<p>有人给出了一种暴力解决方案:修改 main.cpp 函数中的这两行代码</p>\n<pre><code class=\"language-c++\">//\t原代码\n// MainWindow w;\n// w.show();\n\n//\t修改后\n MainWindow* w=new MainWindow;\n w->show();\n</code></pre>\n<p>emm… 确实可以让它不再报错了,可是如果你在析构函数里放个打印输出函数的话,你会发现你关闭窗口后它并不会给你打印,也就是说你关闭窗口时它并不执行析构函数!一些 new 出来的变量内存并不能很好地释放掉,在 QT 中运行还好,但如果你发布成软件的话在进行关闭软件操作时就会出现问题,可以说这并没有解决真正的问题。下面介绍产生这种报错的原因的解决方法。</p>\n<p><mark>注:本文分析的是关闭窗口后报” 程序异常结束 “错误,而不是程序刚开始运行或运行过程中报错,后者产生的原因有很多,建议点击 QT 中的调试 -> 开始调试 ->start debuging for…,运行时会直接给你找出出错的语句</mark></p>\n<h2 id=\"2问题产生原因与解决方法\"><a class=\"markdownIt-Anchor\" href=\"#2问题产生原因与解决方法\">#</a> 2. 问题产生原因与解决方法</h2>\n<h3 id=\"1对象被多次析构\"><a class=\"markdownIt-Anchor\" href=\"#1对象被多次析构\">#</a> ①对象被多次析构</h3>\n<p>存在这种问题时,如果关闭窗口,程序输出窗口会等 2~3s 就会报” 程序异常结束 “,那么大概率是对象被多次析构了,一下情况会导致对象被多次析构:</p>\n<pre><code class=\"language-c++\">/* 1.new一个新对象时给它配置了父对象,而在别处或析构函数中delete了它的对象指针\n\t实际上,给某对象配置父对象后,父对象销毁时该对象指针会被自动销毁,无需去主动销毁它\n\t但如果new的是一个子线程,则必须主动销毁它,销毁方式见②*/\n//如:\nQCPItemRect* selectRect=new QCPItemRect(this);\ndelete selectRect;\n\n/* 2.试图去delete一个智能指针\n\t智能指针不需要去主动销毁*/\n//如:\nshared_ptr<InterfaceForPython> p_obj_python=make_shared<InterfaceForPython>();\ndelete p_obj_python;\n\n/* 3.同一个对象指针被delete了多次*/\n//如:\nQCPItemRect* selectRect=new QCPItemRect(this);\ndelete selectRect;\ndelete selectRect;\t//最后这次delete一定是在某个析构函数中,不然运行中就会报错\n</code></pre>\n<p><mark>解决办法:当然是找出在哪里用了不该用的 delete 然后删掉咯</mark></p>\n<h3 id=\"2存在while死循环或耗时任务无法在短时间内运行完毕或多线程对象指针没有主动销毁\"><a class=\"markdownIt-Anchor\" href=\"#2存在while死循环或耗时任务无法在短时间内运行完毕或多线程对象指针没有主动销毁\">#</a> ②存在 while 死循环或耗时任务无法在短时间内运行完毕,或多线程对象指针没有主动销毁</h3>\n<p>存在这种问题时,如果关闭窗口,程序输出窗口会等待很长时间,然后报” 程序异常结束 “。这个就不用多说了,尤其多线程中可能就需要 while 死循环或存在耗时任务来不断执行某些代码。</p>\n<p><mark>解决办法如下:</mark></p>\n<pre><code class=\"language-c++\">/*若是存在while死循环或耗时任务无法在短时间内运行完毕,需要在循环任务中添加跳出标志位,在该函数所在对象的父对象的析构函数中修改标志位的值,达到强制跳出循环的目的*/\nclass Myclass: QObject\n{\n Myclass(QObject *parent = nullptr);\n void noStopRun(){while(runflag){...}\t};\t//runflag是跳出标志位,noStopRun()函数中while(runflag){...}是一个死循环或耗时任务\n bool runflag=true;\n}\n\nMainWindow::MainWindow(QWidget *parent)\n : QMainWindow(parent)\n , ui(new Ui::MainWindow)\n{\n myObject.noStopRun();\t//myObject为在MainWindow的类声明中定义的成员变量:Myclass myObject;\n}\nMainWindow::~MainWindow()\n{\n myObject.runflag=false;\t//使子函数退出死循环\n}\n\n/*若是多线程对象指针没有主动销毁,按此步骤销毁*/\nMainWindow::~MainWindow()\t\n{\n //若存在while死循环或耗时任务无法在短时间内运行完毕,按上面方式添加标志位,并在此赋false;若不存在则不需要这行代码\n //thread_manager->runflag=false;\t\n \n thread_manager->quit();\t//thread_manager是一个子线程\n thread_manager->wait(); //必须等待线程结束\n thread_manager->deleteLater();\n delete ui;\n delete thread_manager;\n}\n \n</code></pre>\n",
"tags": []
},
{
"id": "http://example.com/2021/08/21/hello-world/",
"url": "http://example.com/2021/08/21/hello-world/",
"title": "Hello World",
"date_published": "2021-08-21T04:42:31.275Z",
"content_html": "<p>Welcome to <a href=\"https://hexo.io/\">Hexo</a>! This is your very first post. Check <a href=\"https://hexo.io/docs/\">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href=\"https://hexo.io/docs/troubleshooting.html\">troubleshooting</a> or you can ask me on <a href=\"https://github.com/hexojs/hexo/issues\">GitHub</a>.</p>\n<h2 id=\"quick-start\"><a class=\"markdownIt-Anchor\" href=\"#quick-start\">#</a> Quick Start</h2>\n<h3 id=\"create-a-new-post\"><a class=\"markdownIt-Anchor\" href=\"#create-a-new-post\">#</a> Create a new post</h3>\n<figure class=\"highlight bash\"><figcaption data-lang=\"bash\"><span>h</span></figcaption><table><tr><td data-num=\"1\"></td><td><pre>$ hexo new <span class=\"token string\">\"My New Post\"</span></pre></td></tr></table></figure><p>More info: <a href=\"https://hexo.io/docs/writing.html\">Writing</a></p>\n<h3 id=\"run-server\"><a class=\"markdownIt-Anchor\" href=\"#run-server\">#</a> Run server</h3>\n<figure class=\"highlight bash\"><figcaption data-lang=\"bash\"><span>h</span></figcaption><table><tr><td data-num=\"1\"></td><td><pre>$ hexo server</pre></td></tr></table></figure><p>More info: <a href=\"https://hexo.io/docs/server.html\">Server</a></p>\n<h3 id=\"generate-static-files\"><a class=\"markdownIt-Anchor\" href=\"#generate-static-files\">#</a> Generate static files</h3>\n<figure class=\"highlight bash\"><figcaption data-lang=\"bash\"><span>h</span></figcaption><table><tr><td data-num=\"1\"></td><td><pre>$ hexo generate</pre></td></tr></table></figure><p>More info: <a href=\"https://hexo.io/docs/generating.html\">Generating</a></p>\n<h3 id=\"deploy-to-remote-sites\"><a class=\"markdownIt-Anchor\" href=\"#deploy-to-remote-sites\">#</a> Deploy to remote sites</h3>\n<figure class=\"highlight bash\"><figcaption data-lang=\"bash\"><span>h</span></figcaption><table><tr><td data-num=\"1\"></td><td><pre>$ hexo deploy</pre></td></tr></table></figure><p>More info: <a href=\"https://hexo.io/docs/one-command-deployment.html\">Deployment</a></p>\n",
"tags": []
}
]
}