Smart Pointers: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 11: Line 11:
== Smart Pointers in Qt ==
== Smart Pointers in Qt ==


* "QPointer":http://doc.qt.io/latest/qpointer.html
* "QPointer":http://doc.qt.io/latest/qpointer.html
* "QSharedDataPointer":http://doc.qt.io/latest/qshareddatapointer.html
* "QSharedDataPointer":http://doc.qt.io/latest/qshareddatapointer.html
* "QExplicitlySharedDataPointer":http://doc.qt.io/latest/qexplicitlyshareddatapointer.html
* "QExplicitlySharedDataPointer":http://doc.qt.io/latest/qexplicitlyshareddatapointer.html
* QtPatternist::AutoPtr (internal class)
* QtPatternist::AutoPtr (internal class)
* "QSharedPointer":http://doc.qt.io/latest/qsharedpointer.html
* "QSharedPointer":http://doc.qt.io/latest/qsharedpointer.html
* "QWeakPointer":http://doc.qt.io/latest/qweakpointer.html
* "QWeakPointer":http://doc.qt.io/latest/qweakpointer.html
* QGuard (internal class)
* QGuard (internal class)
* "QScopedPointer":http://doc.qt.io/latest/qscopedpointer.html
* "QScopedPointer":http://doc.qt.io/latest/qscopedpointer.html


= See also =
= See also =


"Count with me: how many smart pointer classes does Qt have?":http://blog.qt.io/blog/2009/08/25/count-with-me-how-many-smart-pointer-classes-does-qt-have/
"Count with me: how many smart pointer classes does Qt have?":http://blog.qt.io/blog/2009/08/25/count-with-me-how-many-smart-pointer-classes-does-qt-have/


= References =
= References =


"Smart Pointer":http://en.wikipedia.org/wiki/Smart_pointers
"Smart Pointer":http://en.wikipedia.org/wiki/Smart_pointers

Revision as of 09:04, 25 February 2015


English Български Русский

Smart Pointers

Purpose

Smart pointer is an abstract data type that has all features of a standard pointer and additionally provides automatic garbage collection. Smart pointers facilitate the dynamic memory operations. Their main advantage is reducing memory leaks and bugs due to poor memory management.

Smart Pointers in Qt

See also

"Count with me: how many smart pointer classes does Qt have?":http://blog.qt.io/blog/2009/08/25/count-with-me-how-many-smart-pointer-classes-does-qt-have/

References

"Smart Pointer":http://en.wikipedia.org/wiki/Smart_pointers