首页 >后端开发 >C++ >存在哪些 C 智能指针实现以及它们有何不同?

存在哪些 C 智能指针实现以及它们有何不同?

Barbara Streisand
Barbara Streisand原创
2024-11-30 10:46:12620浏览

What C   Smart Pointer Implementations Exist and How Do They Differ?

有哪些 C 智能指针实现可用?

C 03

  • std::auto_ptr:有限的垃圾回收,无法容纳数组分配的对象,不支持拷贝,已废弃。
  • std::auto_ptr_ref: 不是智能指针,与 std::auto_ptr 一起使用复制和赋值。

C 11

  • std::unique_ptr: 替换 std::auto_ptr,改进性能,适用于数组,可用于 STL
  • std::shared_ptr:引用计数智能指针,可以被多个所有者共享,线程安全。
  • std::weak_ptr: 对 std::shared_ptr 拥有的对象的引用,不会阻止

Boost

  • boost::shared_ptr:符合标准的shared-ptr,易于使用,某些方面的开销很高
  • boost::weak_ptr:符合标准的weak_ptr,允许非拥有引用boost::shared_ptr。
  • boost::scoped_ptr: 与std::unique_ptr类似,开销比boost::shared_ptr少,不能用于 STL 容器。
  • boost::intrusive_ptr: 可自定义的智能指针,用于创建您自己的智能指针兼容类。
  • boost::shared_array: 数组的Shared_ptr,支持动态数组分配和
  • boost::scoped_array: 数组的 Scoped_ptr,不可复制,不能在 STL 中使用

Qt

  • QPointer: QObject 及其派生类的弱智能指针,不提供强的指针。
  • QSharedDataPointer:强智能指针,需要手动引用计数,可以子类化QSharedData。
  • QExplicitlySharedDataPointer:与QSharedDataPointer类似,提供更多控制超过
  • QSharedPointer: 原子引用计数,线程安全,可自定义删除,高开销。
  • QWeakPointer: 弱智能指针,与QSharedPointer防止循环引用。
  • QScopedPointer: 单所有者智能指针,比 QSharedPointer 开销更少。

以上是存在哪些 C 智能指针实现以及它们有何不同?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn