Qt 中的智能指针

发布于 2024-08-05 16:40:52 字数 253 浏览 9 评论 0原文

就像它已经写的这里 Qt 到目前为止有 8 个专门的智能指针类。 看起来这就是您所需要的一切。 然而,为了使用任何这些智能指针,您的类必须从 QObject 派生,这并不总是很方便。 Qt 中是否还有其他可与任意类一起使用的智能指针实现?

Like it has been written here Qt up to now has 8 specilized smart pointer classes.
It looks like it is all you will ever need.
However, in order to use any of these smart pointers your class must be derived from QObject which is not always convenient.
Is there other implementations of smart pointers in Qt which work with arbitrary classes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴我老 2024-08-12 16:40:53

许多 Qt 类都是从 QObject 派生的,虽然一些内置智能指针类与 QObject(或 QSharedData)相关,但 QSharedPointerQScopedPointer< /a> 模板似乎允许指向任何内容的指针。

更“现代”的 C++(从 C++11 开始)具有有用的智能指针类型:https://stackoverflow.com/a/30143936 /33987

除此之外,您还会发现一些智能指针模板Boost 中:

  • scoped_ptr - 单个对象的简单唯一所有权。不可复制。
  • scoped_array - 数组的简单唯一所有权。不可复制。
  • shared_ptr - 在多个指针之间共享对象所有权。
  • shared_array - 在多个指针之间共享的数组所有权。
  • weak_ptr - 所拥有对象的非拥有观察者通过shared_ptr。
  • intrusive_ptr - 具有嵌入引用的对象的共享所有权数数。

Many Qt classes are derived from QObject, and while some of the built in smart pointer classes are related to QObject (or QSharedData), the QSharedPointer and QScopedPointer templates appear to allow pointers to anything.

More "modern" C++ (from C++11 onwards) has useful smart pointer types: https://stackoverflow.com/a/30143936/33987.

Beyond that, you'll find some smart pointer templates in Boost:

  • scoped_ptr - Simple sole ownership of single objects. Noncopyable.
  • scoped_array - Simple sole ownership of arrays. Noncopyable.
  • shared_ptr - Object ownership shared among multiple pointers.
  • shared_array - Array ownership shared among multiple pointers.
  • weak_ptr - Non-owning observers of an object owned by shared_ptr.
  • intrusive_ptr - Shared ownership of objects with an embedded reference count.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文