Smart Pointers/ru: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
m (AutoSpider moved page Smart Pointers Russian to Smart Pointers/ru: Localisation)
 
(One intermediate revision by the same user not shown)
Line 13: Line 13:
== Умные указатели в Qt ==
== Умные указатели в Qt ==


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


= Смотрите также =
= Смотрите также =


"Count with me: how many smart pointer classes does Qt have?":http://labs.qt.nokia.com/2009/08/25/count-with-me-how-many-smart-pointer-classes-does-qt-have/
[http://labs.qt.nokia.com/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?]


= Ссылки =
= Ссылки =


"Smart Pointer":http://en.wikipedia.org/wiki/Smart_pointers
[http://en.wikipedia.org/wiki/Smart_pointers Smart Pointer]
"Умные указатели":http://ru.wikipedia.org/wiki/Умный_указатель
[http://ru.wikipedia.org/wiki/Умный_указатель Умные указатели]

Latest revision as of 03:37, 12 April 2015

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

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

Умные указатели

Цель

Умный указатель это шаблонный класс, который имеет все функции стандартного указателя и дополнительно обеспечивает автоматический сбор мусора. Умные указатели облегчают операции с динамической памятью. Их основным преимуществом является сокращение утечек памяти и ошибок из-за плохого управления памятью.

Умные указатели в Qt

Смотрите также

Count with me: how many smart pointer classes does Qt have?

Ссылки

Smart Pointer Умные указатели