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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论