User Tools

Site Tools


qt:heap_versus_stack

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
qt:heap_versus_stack [2010/12/08 22:16] – [Long answer] mithatqt:heap_versus_stack [2010/12/08 22:17] – [Long answer] mithat
Line 20: Line 20:
 <code cpp-qt> <code cpp-qt>
 QObjectSubclass theParent;                              // create theParent on the stack QObjectSubclass theParent;                              // create theParent on the stack
- +AnotherQObjectSubclass *foo;                            // pointer to a child 
-AnotherQObjectSubclass *foo; +foo = new AnotherQObjectSubclass( "bar", &theParent );  // create foo on the heap and reparent to theParent
-foo = new AnotherQObjectSubclass( "foo", &theParent );  // create foo on the heap and reparent to theParent+
 </code> </code>
  
qt/heap_versus_stack.txt · Last modified: 2010/12/08 22:59 by mithat

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki