nsAutoRef 编辑

nsAutoRef<T> is a template class implementing an object that holds a handle to a resource that must be released, typically on destruction of the object.

nsAutoRef has a role similar to nsAutoPtr and nsRefPtr but does not require that the handle is a pointer to an object that was created with new or has AddRef() and Release() methods.  nsAutoRef is therefore useful for managing a reference to a foreign object.

No copy constructor nor copy assignment operators are available, so the handle to the resource will be held until released on destruction of the nsAutoRef or until explicitly reset() or transferred through provided methods.

In order to use nsAutoRef<T> for a class T associated with a particular resource type, the type of the handle to the resource and the method for releasing the resource must be provided for class T.  This is usually done by providing a specialization of nsAutoRefTraits<T>.

nsAutoRef is defined in xpcom/base/nsAutoRef.h.

See Also

nsAutoRefTraits, nsCountedRef

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:40 次

字数:1555

最后编辑:7 年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文