1、Qt 的动态内存回收问题(1)Qt 的动态内存回收机制容易让人觉得困惑,而能够参考的相关资料又很少,不少都是对此一笔带过,或者给出错误的说明。费了不少劲,了解到了一些皮毛。email:1、一篇博文http:/ Qt 的窗口回收机制,复制了过来。大家也可以去原网址看。Qt: 释放窗口资源1. 对于使用指针,使用 new 创建的窗口,当然可以使用 delete 显示的释放其占用的资源:Widget *w = new Widget();delete w;2. 对于使用指针,使用 new 创建的窗口,还可以使用QWidget:setAttribute 方法来当窗口关闭后自动释放其占用的资源,而不用户显
2、示的去调用 delete 释放,此方法当然也会调用窗口的析构函数:Widget *w = new Widget();w-setAttribute(Qt:WA_DeleteOnClose); (在程序中测试过一次,该值默认值为 false,需要通过 setAttribute 来置为 true)这可以用于非模态对话框,因为非模态对话框如果是用指针形式创建,但是再接着 delete 的话,窗口就没了,如果不使用 delete 释放窗口占用的资源,又会赞成泄漏。如果使用普通变量创建,同样的也因为变量作用域马上就结束而窗口也没了,另一种方法就是使用多线程,不过这个的代价大了点。所以这种技术在创建非模态对
3、话框上是非常典型的运用。测试方式:在 Widget 中分配大量的内存,显示与关闭多个此类窗口,看看任务管理器里此程序的内存变化情况,是否真正的释放了占用的内存(当然释放了)。在 C+中使用 new 分配内存时,如 array = new doublelength,此时,给 array 的内存实际上并没有真正的分配,必须等到第一次使用这些内存后才会真正地为其分配物理内存,如:memset(array, 1, length * sizeof(double)又一篇博文:/*http:/ 19:32:20class MainWindow;构造函数中增加:setAttribute(Qt:WA_Delet
4、eOnClose)以后,C/C+ codeMainWindow mainWindow;mainWindow.setGeometry(30,30,1024,768);mainWindow.show();当关闭 mainWindow 时候,会有异常。改成:C/C+ codeMainWindow* mainWindow = new MainWindow;mainWindow-setGeometry(30, 30, 1024, 768);mainWindow-show();这样才可以,原因就是前者定义在栈上,后者定义在堆上,所以当设置了 WA_DeleteOnClose 以后,调用 MainWindo
5、w 析构函数才不会异常抛出。setAttribute(Qt:WA_DeleteOnClose) 什么原理,有没有人研究过源码?*/3. 窗口的内存管理交给父 Widget:Widget *w = new Widget(parent);但这时,如果父 Widget 不结束,这个窗口的资源一直会占用着。至于使用哪种技术来释放窗口的资源,要看具体的运用时,哪种方式更合适。2、一本书看到了Foundations of Qt Development,作者是 Johan Thelin。这本书很适合使用过 C+,开始接触 Qt 的程序员阅读。下面的内容摘自该书,有点涉嫌侵权。Making C+ “Qt-er
6、”Because this is a book on programming, you will start with some code right away (see Listing 1-1).让 C+Qt 化Listing 1-1. A simple C+ class 一个简单的 C+类#include using std:string;class MyClasspublic:MyClass( const stringconst stringvoid setText( const stringint getLengthOfText() const;private:string m_tex
7、t;Lets make this class more powerful by using Qt. Inheriting QtThe first Qt-specific adjustment you will make to the code is really simple: you will simply letyour class inherit the QObject class, which will make it easier to manage instances of the classdynamically by giving instances parents that
8、are responsible for their deletion.第一个 Qt 化的调整相当简单,让你的类继承 QObject 类就行了。这会使得对类的实例的动态管理更加简单。因为可以通过给实例父对象,这样就由父对象来负责删除了。it is commonand recommendedto pass the parent asan argument to the constructor as the first default argument to avoid having to type setParentfor each instance created from the class.
9、一个惯例,并且也是推荐的方式是,将父对象作为一个参数传给构造函数,成为第一个缺省参数。Listing 1-2. Inheriting QObject and accepting a parent继承 QObject 并接受父对象#include #include using std:string;class MyClass : public QObjectpublic:MyClass( const string.;Lets look at the effects of the change, starting with Listing 1-3.It shows a main functionu
10、sing the MyClass class dynamically without Qt.下面我们看看变化。首先是不用 Qt:Listing 1-3. Dynamic memory without Qt不用 Qt 使用动态内存#include int main( int argc, char *argv )MyClass *a, *b, *c;a = new MyClass( “foo“ );b = new MyClass( “ba-a-ar“ );c = new MyClass( “baz“ );std:cout text() getLengthOfText() setText( b-te
11、xt() );std:cout text() getLengthOfText() getLengthOfText() - c-getLengthOfText();delete a;delete b;delete c;return result;Each new call must be followed by a call to delete to avoid a memory leak. Although it isnot a big issue when exiting from the main function (because most modern operating system
12、sfree the memory when the application exits), the destructors are not called as expected. Inlocations other than loop-less main functions, a leak eventually leads to a system crash whenthe system runs out of free memory. Compare it with Listing 1-4, which uses a parent that isautomatically deleted w
13、hen the main function exits. The parent is responsible for callingdelete for all children andta-da!the memory is freed.每个 new 都必须伴随一个 delete 来防止内存泄露。我们将这个例子和下一个比较。下面的 1-4 中,使用了一个父对象。当 main 函数结束时,父对象会被自动删除。而这个父对象负责删除所有的孩子。哒-哒!内存被释放了。Note In the code shown in Listing 1-4, the parent object is added to
14、 show the concept. In real life, itwould be an object performing some sort of taskfor example, a QApplication object, or (in the case ofa dialog box or a window) the this pointer of the window class.注意,在下面的代码中,父对象是用来展示概念的。在实际应用中,它会是一个运行某种任务的对象,比如,QApplication 对象,或者 window 类的 this指针。Listing 1-4. Dyna
15、mic memory with Qt使用 Qt 的动态内存使用#include int main( int argc, char *argv )QObject parent;MyClass *a, *b, *c;a = new MyClass( “foo“, b = new MyClass( “ba-a-ar“, c = new MyClass( “baz“, qDebug() text()getLengthOfText() setText( b-text() );qDebug() text()getLengthOfText() getLengthOfText() - c-getLengthO
16、fText();It might look odd to have a parent object like this, but most Qt applicationsuse a QApplication object to actas a parent.有这样一个父对象也许看起来有点怪怪的。但是,大多 Qt 应用程序使用一个QApplication 对象来作为父对象。When comparing the code complexity in Listing 1-3 and Listing 1-4, look at the differentmemory situations, as sho
17、wn in Figure 1-1. The parent is gray because it is allocated on thestack and thus automatically deleted, whereas the instances of MyClass are white because theyare on the heap and must be handled manually. Because you use the parent to keep track ofthe children, you trust the parent to delete them w
18、hen it is being deleted. So you no longerhave to keep track of the dynamically allocated memory as long as the root object is on thestack (or if you keep track of it).由于父对象在栈空间里,所以就不用你来负责空间释放,这样,它的子对象占用的动态内存也就无需去手动释放了。Qt 的动态内存回收问题(2)3、一篇博文http:/ Qt 编程习惯:主窗体的创建问题发表于 2010 年 09 月 02 日 19:49 分类: Qt 统计:
19、0 评/482 阅 3 人收藏此文章, 收藏此文章(?)关键字: Qt原文 纠正你的 Qt 编程习惯:主窗体的创建问题题记: 要知道,并不是只有初学者才会犯错。(shiroki 的至理名言)最近发现了一些有意思的问题,值得 memo 一下。先来看段代码:源码打印?1. #include 2. #include 3. #include 4. int main(int argc, char* argv) 5. 6. QApplication a(argc, argv); 7. QWebView* mw = new QWebView; 8. mw-show(); 9. mw-load(QUrl(“h
20、ttp:/ 10. return a.exec(); 11. 大家看得出这段代码中的问题吗? (呵呵,不要告诉我是 cuteqt 不能访问哦)这段代码 ms 十分标准, 非常符合笔者平时写 Qt 程序书写 main 函数的习惯, 孰料想竟然是个错误的习惯,而且问题很严重哦。 给个提示:在程序退出时会 aborted。如果还没想出来是什么问题,嘿嘿,没关系,看了下面的答案你就明白了。在这段程序里 QApplication 实例创建在 stack 上,生命期是 main 的大括号内, 而 mw则通过 new 创建在 heap 上, 在程序退出时才会被析构。 换句话说,mw 的生存期长于applic
21、ation 的生存期. 这可是 Qt 编程的大忌, 因为在 Qt 中所有的 Paint Device 都必须要在有 QApplication 实例的情况下创建和使用。 不过如果把这个程序写出来运行一下, 未必会出现我说的 aborted 的问题, 大多数代码类似的程序都能安全的运行(这也是为什么用了那么多年的 Qt 从来没有注意过这个问题, 并且养成了我错误的编程习惯。)。 这里的 trick 在于 application 退出时 mw 已经被关闭, mw 中的所有 Paint Device 一般都不会被访问到了, 所以这个错误隐藏在很深的阴暗角落, 偷偷地嘲笑我们呢!要想试验这个问题也很简单
22、,把 load 的参数换成本地文件 test.html, 并把下面的内容写进 test.html 就能看到拉:源码打印?1. 2. 3. Item1 4. Item2 5. Item3 6. 7. 这个 html 里使用了下拉选单。 如果你运行程序并点开该选单,之后退出程序你就会看到Aborted 错误提示,并打印出错误信息:“QWidget: Must construct a QApplication before a QPaintDevice”。Qt 的动态内存回收问题(3)既然提出的问题,当然也要给出解决的方案。 有两种可行的方法避免该错误。 一个当然是纠正一下编程习惯,对 mw 不要用
23、 new 的方式创建,改在 stack 上创建,如下代码:源码打印?1. #include 2. #include 3. #include 4. int main(int arg, char* argv) 5. 6. QApplication a(argc, argv); 7. QWebView mw; 8. mw.show(); 9. mw.load(QUrl(“http:/ 10. return a.exec(); 11. 另外还可以用 Qt 提供的 API 解决此问题, 想办法让 mw 在 application 之前 clean up, 那就是用 WA_DeleteOnClose 属性
24、。 该属性标示窗体会在 close 时被析构, 这样就保证不会留存在 application 析构之后了, 是个很好的办法。代码如下:源码打印?1. #include 2. #include 3. #include 4. int main(int arg, char* argv) 5. 6. QApplication a(argc, argv); 7. QWebView* mw = new QWebView; 8. mw-show(); 9. mw-setAttribute(Qt:WA_DeleteOnClose);10./ mw-setAttribute(Qt:WA_QuitOnClose)
25、;11. mw-load(QUrl(“http:/ 12. return a.exec(); 13. 发现问题和解决问题是件很有乐趣的事情,大家不要把时间都浪费在猜测上,要多动手多思考才能进步!/=/Qt Jambi 也存在类似的问题,如果以程序启动的代码块去启动 QApplication,在程序运行过程中,一些资源回收会报出 Null 指针错误,这些错误,通过 debug,最终都会指向QWidget 这个类。当把 QApplication 启动的执行程序移出 main 函数,问题迎刃而解。要多注意细节。Qt 的动态内存回收问题(4)4、几个函数(1) void QApplication:se
26、tMainWidget ( QWidget * mainWidget ) staticSets the applications main widget to mainWidget.In most respects the main widget is like any other widget, except that if it is closed, the application exits. QApplication does not take ownership of the mainWidget, so if you create your main widget on the h
27、eap you must delete it yourself.You need not have a main widget; connecting lastWindowClosed() to quit() is an alternative.On X11, this function also resizes and moves the main widget according to the -geometrycommand-line option, so you should set the default geometry (using QWidget:setGeometry() b
28、efore calling setMainWidget().See also mainWidget(), exec(), and quit().(2)int QApplication:exec () staticEnters the main event loop and waits until exit() is called, then returns the value that was set toexit() (which is 0 if exit() is called via quit().It is necessary to call this function to star
29、t event handling. The main event loop receives events from the window system and dispatches these to the application widgets.Generally, no user interaction can take place before calling exec(). As a special case, modal widgets like QMessageBox can be used before calling exec(), because modal widgets
30、 call exec() to start a local event loop.To make your application perform idle processing, i.e., executing a special function whenever there are no pending events, use a QTimer with 0 timeout. More advanced idle processing schemes can be achieved using processEvents().We recommend that you connect c
31、lean-up code to the aboutToQuit() signal, instead of putting it in your applications main() function. This is because, on some platforms the QApplication:exec() call may not return. For example, on the Windows platform, when the user logs off, the system terminates the process after Qt closes all to
32、p-level windows. Hence, there is no guarantee that the application will have time to exit its event loop and execute code at the end of the main() function, after the QApplication:exec() call.See also quitOnLastWindowClosed, quit(), exit(), processEvents(), and QCoreApplication:exec().(3)quitOnLastW
33、indowClosed : boolThis property holds whether the application implicitly quits when the last window is closed.The default is true.If this property is true, the applications quits when the last visible primary window (i.e. window with no parent) with the Qt:WA_QuitOnClose attribute set is closed. By default this attribute is set for all widgets except for sub-windows. Refer to Qt:WindowType for a detailed list of Qt:Window objects.Access functions:
Copyright © 2018-2021 Wenke99.com All rights reserved
工信部备案号:浙ICP备20026746号-2
公安局备案号:浙公网安备33038302330469号
本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。