Obsolete Members for QScopedPointer

QScopedPointer 的以下成员已被弃用。提供这些成员是为了保持旧源代码的正常运行。我们强烈建议不要在新代码中使用它们。

公共函数

(deprecated in 6.2) void swap(QScopedPointer<T, Cleanup> &other)
(deprecated in 6.1) T *take()

相关非成员

(deprecated in 6.2) void swap(QScopedPointer<T, Cleanup> &lhs, QScopedPointer<T, Cleanup> &rhs)

成员函数文档

[noexcept, deprecated in 6.2] void QScopedPointer::swap(QScopedPointer<T, Cleanup> &other)

自 6.2 版起,该函数已被弃用。我们强烈建议不要在新代码中使用该函数。

请使用std::unique_ptr 代替;该函数可能会让指针逃脱其作用域。

将此作用域指针与other 互换。该操作速度非常快,而且不会失败。

[noexcept, deprecated in 6.1] T *QScopedPointer::take()

自 6.1 版起,该函数已被弃用。我们强烈建议不要在新代码中使用该函数。

请使用std::unique_ptrrelease()

返回此对象引用指针的值。QScopedPointer 对象的指针将重置为nullptr

该函数的调用者将获得指针的所有权。

相关非成员

[noexcept, deprecated in 6.2] void swap(QScopedPointer<T, Cleanup> &lhs, QScopedPointer<T, Cleanup> &rhs)

自 6.2 版起,该函数已被弃用。我们强烈建议不要在新代码中使用该函数。

请使用std::unique_ptr ;该函数可能会让指针逃脱其作用域。

lhsrhs 互换。

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.